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

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.