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

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.