gitextract_kok6b9fh/ ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ └── github-issue-sync.yml ├── .gitignore ├── AmtPtpDevice.Settings.sln ├── AmtPtpDriver.sln ├── LICENSE-GPL.md ├── LICENSE-MIT.md ├── LICENSE.md ├── README.md ├── es/ │ └── New-CabinetFile.ps1 └── src/ ├── AmtPtpDevice.Settings/ │ ├── AmtPtpDevice.Settings.csproj │ ├── App.xaml │ ├── App.xaml.cs │ ├── Comm/ │ │ └── UsbHidDeviceAccessSubscription.cs │ ├── DataObjects/ │ │ ├── Mt2BatteryStatusReport.cs │ │ └── PtpUserModeConfReport.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ └── Properties/ │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── AmtPtpDeviceSpiKm/ │ ├── AmtPtpDeviceSpiKm.vcxproj │ ├── AmtPtpDeviceSpiKm.vcxproj.filters │ ├── AppleDefinition.h │ ├── Device.c │ ├── Device.h │ ├── Driver.c │ ├── Driver.h │ ├── HID/ │ │ ├── SpiTrackpadSeries1.h │ │ ├── SpiTrackpadSeries2.h │ │ └── SpiTrackpadSeries3.h │ ├── Hid.c │ ├── Hid.h │ ├── HidCommon.h │ ├── Input.c │ ├── Input.h │ ├── Public.h │ ├── Queue.c │ ├── Queue.h │ └── Trace.h ├── AmtPtpDeviceUniversalPkg/ │ ├── AmtPtpDevice.inf │ ├── AmtPtpDeviceUniversalPkg.vcxproj │ └── AmtPtpDeviceUniversalPkg.vcxproj.filters ├── AmtPtpDeviceUsbKm/ │ ├── AmtPtpDeviceUsbKm.vcxproj │ ├── AmtPtpDeviceUsbKm.vcxproj.filters │ ├── DebugUtils.c │ ├── Device.c │ ├── Device.h │ ├── Driver.c │ ├── Driver.h │ ├── Hid.c │ ├── Interrupt.c │ ├── Public.h │ ├── Queue.c │ ├── Queue.h │ ├── Resource.rc │ ├── Trace.h │ ├── include/ │ │ ├── AppleDefinition.h │ │ ├── Hid.h │ │ ├── hid/ │ │ │ └── HidCommon.h │ │ └── metadata/ │ │ └── WellspringT2.h │ └── resource.h ├── AmtPtpDeviceUsbUm/ │ ├── AmtPtpDevice.wprp │ ├── Device.c │ ├── Driver.c │ ├── Hid.c │ ├── InputInterrupt.c │ ├── MagicTrackpad2PtpDevice.vcxproj │ ├── MagicTrackpad2PtpDevice.vcxproj.filters │ ├── Queue.c │ ├── Resource.rc │ └── include/ │ ├── AppleDefinition.h │ ├── Device.h │ ├── DeviceFamily/ │ │ ├── Wellspring3.h │ │ ├── Wellspring5.h │ │ ├── Wellspring6.h │ │ ├── Wellspring7A.h │ │ ├── Wellspring8.h │ │ └── WellspringMt2.h │ ├── Driver.h │ ├── Hid.h │ ├── HidCommon.h │ ├── ModernTrace.h │ ├── Queue.h │ ├── StaticHidRegistry.h │ ├── Trace.h │ └── resource.h └── AmtPtpHidFilter/ ├── AmtPtpHidFilter.inf ├── AmtPtpHidFilter.vcxproj ├── AmtPtpHidFilter.vcxproj.filters ├── Detour.c ├── Device.c ├── Diagnostics.c ├── Driver.c ├── Hid.c ├── Input.c ├── Queue.c └── include/ ├── Device.h ├── Diagnostics.h ├── Driver.h ├── Hac.h ├── HidCommon.h ├── HidDevice.h ├── HidMiniport.h ├── Input.h ├── Metadata/ │ ├── MagicTrackpad2.h │ ├── StaticHidRegistry.h │ └── WindowsHID.h ├── Queue.h └── Trace.h