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

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.