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

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.