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

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.