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

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.