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

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.