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

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.