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

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.