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

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.