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

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.