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

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.