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

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.