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