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

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.