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

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.