├── .gitignore ├── 3rdParty ├── GraphicsServices │ └── GSEvent.h └── IOKit │ ├── IOKit.h │ ├── IOKitKeys.h │ ├── IOKitLib.h │ ├── IOReturn.h │ ├── IOTypes.h │ ├── OSKext.h │ ├── OSMessageNotification.h │ └── hid │ ├── IOHIDDisplay.h │ ├── IOHIDEvent.h │ ├── IOHIDEventData.h │ ├── IOHIDEventQueue.h │ ├── IOHIDEventSystem.h │ ├── IOHIDEventSystemClient.h │ ├── IOHIDEventTypes.h │ ├── IOHIDNotification.h │ ├── IOHIDService.h │ ├── IOHIDSession.h │ └── IOHIDUserDevice.h ├── Frameworks └── GraphicsServices.framework │ └── GraphicsServices.tbd ├── Makefile ├── README.md ├── control ├── hid-support-internal.h ├── hid-support.h ├── hidlowtide ├── Makefile ├── Tweak.xm ├── control └── hidlowtide.plist ├── hidspringboard ├── Makefile ├── Tweak.xm ├── control └── hidspringboard.plist ├── hidsupporttest ├── Makefile ├── control └── main.c └── libhidsupport ├── Makefile ├── client.c └── control /.gitignore: -------------------------------------------------------------------------------- 1 | debs 2 | -------------------------------------------------------------------------------- /3rdParty/GraphicsServices/GSEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/3rdParty/GraphicsServices/GSEvent.h -------------------------------------------------------------------------------- /3rdParty/IOKit/IOKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/3rdParty/IOKit/IOKit.h -------------------------------------------------------------------------------- /3rdParty/IOKit/IOKitKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/3rdParty/IOKit/IOKitKeys.h -------------------------------------------------------------------------------- /3rdParty/IOKit/IOKitLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/3rdParty/IOKit/IOKitLib.h -------------------------------------------------------------------------------- /3rdParty/IOKit/IOReturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/3rdParty/IOKit/IOReturn.h -------------------------------------------------------------------------------- /3rdParty/IOKit/IOTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/3rdParty/IOKit/IOTypes.h -------------------------------------------------------------------------------- /3rdParty/IOKit/OSKext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/3rdParty/IOKit/OSKext.h -------------------------------------------------------------------------------- /3rdParty/IOKit/OSMessageNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/3rdParty/IOKit/OSMessageNotification.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/3rdParty/IOKit/hid/IOHIDDisplay.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/3rdParty/IOKit/hid/IOHIDEvent.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDEventData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/3rdParty/IOKit/hid/IOHIDEventData.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDEventQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/3rdParty/IOKit/hid/IOHIDEventQueue.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDEventSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/3rdParty/IOKit/hid/IOHIDEventSystem.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDEventSystemClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/3rdParty/IOKit/hid/IOHIDEventSystemClient.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDEventTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/3rdParty/IOKit/hid/IOHIDEventTypes.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/3rdParty/IOKit/hid/IOHIDNotification.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/3rdParty/IOKit/hid/IOHIDService.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/3rdParty/IOKit/hid/IOHIDSession.h -------------------------------------------------------------------------------- /3rdParty/IOKit/hid/IOHIDUserDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/3rdParty/IOKit/hid/IOHIDUserDevice.h -------------------------------------------------------------------------------- /Frameworks/GraphicsServices.framework/GraphicsServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/Frameworks/GraphicsServices.framework/GraphicsServices.tbd -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # hid-support 2 | HID event simulation for JB iOS devices 3 | -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/control -------------------------------------------------------------------------------- /hid-support-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/hid-support-internal.h -------------------------------------------------------------------------------- /hid-support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/hid-support.h -------------------------------------------------------------------------------- /hidlowtide/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/hidlowtide/Makefile -------------------------------------------------------------------------------- /hidlowtide/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/hidlowtide/Tweak.xm -------------------------------------------------------------------------------- /hidlowtide/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/hidlowtide/control -------------------------------------------------------------------------------- /hidlowtide/hidlowtide.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/hidlowtide/hidlowtide.plist -------------------------------------------------------------------------------- /hidspringboard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/hidspringboard/Makefile -------------------------------------------------------------------------------- /hidspringboard/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/hidspringboard/Tweak.xm -------------------------------------------------------------------------------- /hidspringboard/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/hidspringboard/control -------------------------------------------------------------------------------- /hidspringboard/hidspringboard.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/hidspringboard/hidspringboard.plist -------------------------------------------------------------------------------- /hidsupporttest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/hidsupporttest/Makefile -------------------------------------------------------------------------------- /hidsupporttest/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/hidsupporttest/control -------------------------------------------------------------------------------- /hidsupporttest/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/hidsupporttest/main.c -------------------------------------------------------------------------------- /libhidsupport/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/libhidsupport/Makefile -------------------------------------------------------------------------------- /libhidsupport/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/libhidsupport/client.c -------------------------------------------------------------------------------- /libhidsupport/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mringwal/hid-support/HEAD/libhidsupport/control --------------------------------------------------------------------------------