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