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