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

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.