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

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.