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