Kevin Bradley c19bf3b3b1 first full commit | il y a 7 ans | |
---|---|---|
.. | ||
AddressBookUI | il y a 7 ans | |
AlienBlue | il y a 7 ans | |
AppKit | il y a 7 ans | |
AppList | il y a 7 ans | |
AppSupport | il y a 7 ans | |
AssertionServices | il y a 7 ans | |
BackBoardServices | il y a 7 ans | |
BiteSMS | il y a 7 ans | |
BulletinBoard | il y a 7 ans | |
CaptainHook | il y a 7 ans | |
Celestial | il y a 7 ans | |
ChatKit | il y a 7 ans | |
CoreFoundation | il y a 7 ans | |
CoreLocation | il y a 7 ans | |
Flipswitch | il y a 7 ans | |
Foundation | il y a 7 ans | |
FrontBoard | il y a 7 ans | |
GraphicsServices | il y a 7 ans | |
IMCore | il y a 7 ans | |
IMDaemonCore | il y a 7 ans | |
IMFoundation | il y a 7 ans | |
IconSupport | il y a 7 ans | |
Jasmine | il y a 7 ans | |
LightMessaging | il y a 7 ans | |
MapKit | il y a 7 ans | |
MediaPlayer | il y a 7 ans | |
MediaPlayerUI | il y a 7 ans | |
MediaRemote | il y a 7 ans | |
MobileCoreServices | il y a 7 ans | |
MobileGestalt | il y a 7 ans | |
MobileIcons | il y a 7 ans | |
MobilePhone | il y a 7 ans | |
MobileSMS | il y a 7 ans | |
MobileTimer | il y a 7 ans | |
Pandora | il y a 7 ans | |
PersistentConnection | il y a 7 ans | |
PhotoLibrary | il y a 7 ans | |
PhotoLibraryServices | il y a 7 ans | |
Preferences | il y a 7 ans | |
PreferencesUI | il y a 7 ans | |
QuartzCore | il y a 7 ans | |
SpringBoard | il y a 7 ans | |
SpringBoardFoundation | il y a 7 ans | |
SpringBoardServices | il y a 7 ans | |
SpringBoardUI | il y a 7 ans | |
SpringBoardUIServices | il y a 7 ans | |
StoreKitUI | il y a 7 ans | |
TechSupport | il y a 7 ans | |
TelephonyUI | il y a 7 ans | |
Tweetbot | il y a 7 ans | |
TwitkaFly | il y a 7 ans | |
UIKit | il y a 7 ans | |
Velox | il y a 7 ans | |
_Prefix | il y a 7 ans | |
auki | il y a 7 ans | |
installd | il y a 7 ans | |
libactivator | il y a 7 ans | |
libopener | il y a 7 ans | |
libpackageinfo | il y a 7 ans | |
libstatusbar | il y a 7 ans | |
logos | il y a 7 ans | |
objc | il y a 7 ans | |
openssl | il y a 7 ans | |
rocketbootstrap | il y a 7 ans | |
Availability2.h | il y a 7 ans | |
CydiaSubstrate.h | il y a 7 ans | |
LICENSE.md | il y a 7 ans | |
README.md | il y a 7 ans | |
libcolorpicker.h | il y a 7 ans | |
libhbangcommon | il y a 7 ans | |
substrate.h | il y a 7 ans | |
substrate2.h | il y a 7 ans | |
version.h | il y a 7 ans |
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.
Headers that aren't from elsewhere are released into the Public Domain.
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.