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

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.