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