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

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.