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