Kevin Bradley 05e3eb0a4c initial commit 5 år sedan
..
AddressBookUI 05e3eb0a4c initial commit 5 år sedan
AlienBlue 05e3eb0a4c initial commit 5 år sedan
AppKit 05e3eb0a4c initial commit 5 år sedan
AppList 05e3eb0a4c initial commit 5 år sedan
AppSupport 05e3eb0a4c initial commit 5 år sedan
AssertionServices 05e3eb0a4c initial commit 5 år sedan
BackBoardServices 05e3eb0a4c initial commit 5 år sedan
BiteSMS 05e3eb0a4c initial commit 5 år sedan
BulletinBoard 05e3eb0a4c initial commit 5 år sedan
CaptainHook 05e3eb0a4c initial commit 5 år sedan
Celestial 05e3eb0a4c initial commit 5 år sedan
ChatKit 05e3eb0a4c initial commit 5 år sedan
CoreFoundation 05e3eb0a4c initial commit 5 år sedan
CoreLocation 05e3eb0a4c initial commit 5 år sedan
Flipswitch 05e3eb0a4c initial commit 5 år sedan
Foundation 05e3eb0a4c initial commit 5 år sedan
FrontBoard 05e3eb0a4c initial commit 5 år sedan
GraphicsServices 05e3eb0a4c initial commit 5 år sedan
IMCore 05e3eb0a4c initial commit 5 år sedan
IMDaemonCore 05e3eb0a4c initial commit 5 år sedan
IMFoundation 05e3eb0a4c initial commit 5 år sedan
IconSupport 05e3eb0a4c initial commit 5 år sedan
Jasmine 05e3eb0a4c initial commit 5 år sedan
LightMessaging 05e3eb0a4c initial commit 5 år sedan
MapKit 05e3eb0a4c initial commit 5 år sedan
MediaPlayer 05e3eb0a4c initial commit 5 år sedan
MediaPlayerUI 05e3eb0a4c initial commit 5 år sedan
MediaRemote 05e3eb0a4c initial commit 5 år sedan
MobileCoreServices 05e3eb0a4c initial commit 5 år sedan
MobileGestalt 05e3eb0a4c initial commit 5 år sedan
MobileIcons 05e3eb0a4c initial commit 5 år sedan
MobilePhone 05e3eb0a4c initial commit 5 år sedan
MobileSMS 05e3eb0a4c initial commit 5 år sedan
MobileTimer 05e3eb0a4c initial commit 5 år sedan
Pandora 05e3eb0a4c initial commit 5 år sedan
PersistentConnection 05e3eb0a4c initial commit 5 år sedan
PhotoLibrary 05e3eb0a4c initial commit 5 år sedan
PhotoLibraryServices 05e3eb0a4c initial commit 5 år sedan
Preferences 05e3eb0a4c initial commit 5 år sedan
PreferencesUI 05e3eb0a4c initial commit 5 år sedan
QuartzCore 05e3eb0a4c initial commit 5 år sedan
SpringBoard 05e3eb0a4c initial commit 5 år sedan
SpringBoardFoundation 05e3eb0a4c initial commit 5 år sedan
SpringBoardServices 05e3eb0a4c initial commit 5 år sedan
SpringBoardUI 05e3eb0a4c initial commit 5 år sedan
SpringBoardUIServices 05e3eb0a4c initial commit 5 år sedan
StoreKitUI 05e3eb0a4c initial commit 5 år sedan
TechSupport 05e3eb0a4c initial commit 5 år sedan
TelephonyUI 05e3eb0a4c initial commit 5 år sedan
Tweetbot 05e3eb0a4c initial commit 5 år sedan
TwitkaFly 05e3eb0a4c initial commit 5 år sedan
UIKit 05e3eb0a4c initial commit 5 år sedan
Velox 05e3eb0a4c initial commit 5 år sedan
_Prefix 05e3eb0a4c initial commit 5 år sedan
auki 05e3eb0a4c initial commit 5 år sedan
installd 05e3eb0a4c initial commit 5 år sedan
libactivator 05e3eb0a4c initial commit 5 år sedan
libopener 05e3eb0a4c initial commit 5 år sedan
libpackageinfo 05e3eb0a4c initial commit 5 år sedan
libstatusbar 05e3eb0a4c initial commit 5 år sedan
logos 05e3eb0a4c initial commit 5 år sedan
objc 05e3eb0a4c initial commit 5 år sedan
openssl 05e3eb0a4c initial commit 5 år sedan
rocketbootstrap 05e3eb0a4c initial commit 5 år sedan
Availability2.h 05e3eb0a4c initial commit 5 år sedan
CydiaSubstrate.h 05e3eb0a4c initial commit 5 år sedan
LICENSE.md 05e3eb0a4c initial commit 5 år sedan
README.md 05e3eb0a4c initial commit 5 år sedan
libcolorpicker.h 05e3eb0a4c initial commit 5 år sedan
libhbangcommon 05e3eb0a4c initial commit 5 år sedan
substrate.h 05e3eb0a4c initial commit 5 år sedan
substrate2.h 05e3eb0a4c initial commit 5 år sedan
version.h 05e3eb0a4c initial commit 5 år sedan

README.md

The headers that HASHBANG Productions uses. Headers are only created for classes we need, and only methods that we use are added to them. This is due to the large number of classes and methods that are broken in class dumps - this way, we manually set up the headers and they are guaranteed to work.

Feel free to use these (git clone git://github.com/hbang/headers.git $THEOS/include - if you have an existing $THEOS/include directory, rename it) and add on to them.

Credits

Headers that aren't from elsewhere are released into the Public Domain.

Code rules

  • Create headers only for what you use.
  • Follow the existing coding style.
  • Singleton (sharedInstance) methods should return instancetype.
  • Don't just copy and paste lines from class-dumps - replace id with the appropriate class. Also change arg1 and the like, or in some cases class-dump-z's guessed argument names, to something more appropriate. Cycript is helpful here:

    $ cycript -p SpringBoard
    cy# [SBBaconController sharedInstance].baconCurrentlyBeingEaten.class
    @"SBBacon"
    

    Additionally, keep ARM64 support in mind - float should become CGFloat, int should become NSInteger, and unsigned should become NSUInteger. This is especially important when using the headers as reference for hooking.

  • Any headers from an open-source library can be included here, but please note its license here in the readme.

  • (Optional but I'd appreciate it!) Be awesome; pull request your changes back to this repo so others can benefit.