├── .gitignore ├── AmtPtpControlPanel ├── AmtPtpControlPanel.csproj ├── AmtPtpControlPanel.sln ├── App.config ├── Main.Designer.cs ├── Main.cs ├── Main.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ └── Icon1.ico └── app.manifest ├── AmtPtpDeviceUsbUm ├── AmtPtpDevice.wprp ├── Device.c ├── Driver.c ├── Hid.c ├── InputInterrupt.c ├── MagicTrackpad2PtpDevice.sln ├── 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 ├── README.md └── assets └── ControlPanel.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/.gitignore -------------------------------------------------------------------------------- /AmtPtpControlPanel/AmtPtpControlPanel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpControlPanel/AmtPtpControlPanel.csproj -------------------------------------------------------------------------------- /AmtPtpControlPanel/AmtPtpControlPanel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpControlPanel/AmtPtpControlPanel.sln -------------------------------------------------------------------------------- /AmtPtpControlPanel/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpControlPanel/App.config -------------------------------------------------------------------------------- /AmtPtpControlPanel/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpControlPanel/Main.Designer.cs -------------------------------------------------------------------------------- /AmtPtpControlPanel/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpControlPanel/Main.cs -------------------------------------------------------------------------------- /AmtPtpControlPanel/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpControlPanel/Main.resx -------------------------------------------------------------------------------- /AmtPtpControlPanel/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpControlPanel/Program.cs -------------------------------------------------------------------------------- /AmtPtpControlPanel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpControlPanel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AmtPtpControlPanel/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpControlPanel/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AmtPtpControlPanel/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpControlPanel/Properties/Resources.resx -------------------------------------------------------------------------------- /AmtPtpControlPanel/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpControlPanel/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /AmtPtpControlPanel/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpControlPanel/Properties/Settings.settings -------------------------------------------------------------------------------- /AmtPtpControlPanel/Resources/Icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpControlPanel/Resources/Icon1.ico -------------------------------------------------------------------------------- /AmtPtpControlPanel/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpControlPanel/app.manifest -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/AmtPtpDevice.wprp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/AmtPtpDevice.wprp -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/Device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/Device.c -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/Driver.c -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/Hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/Hid.c -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/InputInterrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/InputInterrupt.c -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/MagicTrackpad2PtpDevice.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/MagicTrackpad2PtpDevice.sln -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/MagicTrackpad2PtpDevice.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/MagicTrackpad2PtpDevice.vcxproj -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/MagicTrackpad2PtpDevice.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/MagicTrackpad2PtpDevice.vcxproj.filters -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/Queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/Queue.c -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/Resource.rc -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/include/AppleDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/include/AppleDefinition.h -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/include/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/include/Device.h -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/include/DeviceFamily/Wellspring3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/include/DeviceFamily/Wellspring3.h -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/include/DeviceFamily/Wellspring5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/include/DeviceFamily/Wellspring5.h -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/include/DeviceFamily/Wellspring6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/include/DeviceFamily/Wellspring6.h -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/include/DeviceFamily/Wellspring7A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/include/DeviceFamily/Wellspring7A.h -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/include/DeviceFamily/Wellspring8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/include/DeviceFamily/Wellspring8.h -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/include/DeviceFamily/WellspringMt2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/include/DeviceFamily/WellspringMt2.h -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/include/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/include/Driver.h -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/include/Hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/include/Hid.h -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/include/HidCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/include/HidCommon.h -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/include/ModernTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/include/ModernTrace.h -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/include/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/include/Queue.h -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/include/StaticHidRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/include/StaticHidRegistry.h -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/include/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/include/Trace.h -------------------------------------------------------------------------------- /AmtPtpDeviceUsbUm/include/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/AmtPtpDeviceUsbUm/include/resource.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/README.md -------------------------------------------------------------------------------- /assets/ControlPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maashrafh/MagicTrackpad2ForWindows/HEAD/assets/ControlPanel.png --------------------------------------------------------------------------------