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

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.