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

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.