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