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