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.