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

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.