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

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.