├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── ROG-HID-Driver ├── HIDUsageTables.h ├── IOBufferMemoryDescriptorUtility.h ├── Info.plist ├── ROGHIDUserClient │ ├── ROGHIDUserClient.cpp │ └── ROGHIDUserClient.iig ├── ROG_HID_Driver.cpp ├── ROG_HID_Driver.entitlements └── ROG_HID_Driver.iig ├── ROG-HID.xcodeproj └── project.pbxproj ├── ROG-HID ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── ContentView.swift ├── ExtensionManger.swift ├── Info.plist ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json └── ROG_HID.entitlements ├── Utils └── reenumerate └── codesign.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/README.md -------------------------------------------------------------------------------- /ROG-HID-Driver/HIDUsageTables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/ROG-HID-Driver/HIDUsageTables.h -------------------------------------------------------------------------------- /ROG-HID-Driver/IOBufferMemoryDescriptorUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/ROG-HID-Driver/IOBufferMemoryDescriptorUtility.h -------------------------------------------------------------------------------- /ROG-HID-Driver/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/ROG-HID-Driver/Info.plist -------------------------------------------------------------------------------- /ROG-HID-Driver/ROGHIDUserClient/ROGHIDUserClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/ROG-HID-Driver/ROGHIDUserClient/ROGHIDUserClient.cpp -------------------------------------------------------------------------------- /ROG-HID-Driver/ROGHIDUserClient/ROGHIDUserClient.iig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/ROG-HID-Driver/ROGHIDUserClient/ROGHIDUserClient.iig -------------------------------------------------------------------------------- /ROG-HID-Driver/ROG_HID_Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/ROG-HID-Driver/ROG_HID_Driver.cpp -------------------------------------------------------------------------------- /ROG-HID-Driver/ROG_HID_Driver.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/ROG-HID-Driver/ROG_HID_Driver.entitlements -------------------------------------------------------------------------------- /ROG-HID-Driver/ROG_HID_Driver.iig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/ROG-HID-Driver/ROG_HID_Driver.iig -------------------------------------------------------------------------------- /ROG-HID.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/ROG-HID.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ROG-HID/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/ROG-HID/AppDelegate.swift -------------------------------------------------------------------------------- /ROG-HID/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/ROG-HID/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ROG-HID/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/ROG-HID/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ROG-HID/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/ROG-HID/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ROG-HID/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/ROG-HID/ContentView.swift -------------------------------------------------------------------------------- /ROG-HID/ExtensionManger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/ROG-HID/ExtensionManger.swift -------------------------------------------------------------------------------- /ROG-HID/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/ROG-HID/Info.plist -------------------------------------------------------------------------------- /ROG-HID/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/ROG-HID/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ROG-HID/ROG_HID.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/ROG-HID/ROG_HID.entitlements -------------------------------------------------------------------------------- /Utils/reenumerate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/Utils/reenumerate -------------------------------------------------------------------------------- /codesign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/black-dragon74/ROG-HID/HEAD/codesign.sh --------------------------------------------------------------------------------