gitextract_3ar40yv7/ ├── .gitignore ├── BuildAndZip/ │ ├── BuildAndZip.vcxproj │ └── BuildAndZip.vcxproj.filters ├── BuildTools/ │ └── 7za/ │ ├── 7-zip.chm │ ├── license.txt │ └── readme.txt ├── HID Miniport/ │ ├── HID Miniport.rc │ ├── HID Miniport.vcxproj │ ├── HID Miniport.vcxproj.backup │ ├── HID Miniport.vcxproj.filters │ ├── Hidminiport.c │ ├── Hidminiport.h │ ├── Trace.c │ ├── Trace.h │ └── resource.h ├── HID Wiimote/ │ ├── Bluetooth.c │ ├── Bluetooth.h │ ├── Device.c │ ├── Device.h │ ├── DeviceInterface.c │ ├── DeviceInterface.h │ ├── DeviceInterfacePublic.h │ ├── Driver.c │ ├── Driver.h │ ├── HID Wiimote.rc │ ├── HID Wiimote.vcxproj │ ├── HID Wiimote.vcxproj.backup │ ├── HID Wiimote.vcxproj.filters │ ├── HID.c │ ├── HID.h │ ├── HIDDescriptors.c │ ├── HIDDescriptors.h │ ├── HIDWiimote.h │ ├── HIDWiimote.inf │ ├── ReadIoControlBuffer.c │ ├── ReadIoControlBuffer.h │ ├── Trace.c │ ├── Trace.h │ ├── Wiimote.c │ ├── Wiimote.h │ ├── WiimoteSettings.c │ ├── WiimoteSettings.h │ ├── WiimoteState.c │ ├── WiimoteState.h │ ├── WiimoteToHIDParser.c │ ├── WiimoteToHIDParser.h │ └── resource.h ├── HID Wiimote Control Center/ │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Control Center/ │ │ ├── DummyDeviceInterface.cs │ │ └── WiimoteDevice.cs │ ├── HID Wiimote Control Center.csproj │ ├── Main Windows/ │ │ ├── ControlCenterWindow.xaml │ │ ├── ControlCenterWindow.xaml.cs │ │ ├── InstallerWindow.xaml │ │ ├── InstallerWindow.xaml.cs │ │ ├── UpdaterWindow.xaml │ │ └── UpdaterWindow.xaml.cs │ ├── Properties/ │ │ ├── App.Designer.cs │ │ ├── App.resx │ │ ├── AssemblyInfo.cs │ │ ├── ControlCenter.Designer.cs │ │ ├── ControlCenter.resx │ │ ├── Installer.Designer.cs │ │ ├── Installer.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── app.manifest │ ├── Resources/ │ │ ├── JulianLoehrCA.cer │ │ └── UninstallerContent.txt │ ├── Secondary Windows/ │ │ ├── About.xaml │ │ └── About.xaml.cs │ ├── Setup/ │ │ ├── DeviceDriver.cs │ │ ├── DeviceDriverUninstallerRegistry.cs │ │ ├── InstallStepAction/ │ │ │ ├── CopyFile.cs │ │ │ ├── CreateRegistryUninstallKey.cs │ │ │ ├── IInstallAction.cs │ │ │ ├── RunDPInstall.cs │ │ │ └── TextResourceToFile.cs │ │ └── SetupAction/ │ │ ├── Certificate.cs │ │ ├── DeviceDriver.cs │ │ ├── ISetupAction.cs │ │ └── TestMode.cs │ ├── UserControls/ │ │ ├── LEDDisplay.xaml │ │ ├── LEDDisplay.xaml.cs │ │ ├── TaskList.xaml │ │ └── TaskList.xaml.cs │ └── Utility/ │ └── SingleInstanceProtector.cs ├── HID Wiimote Package/ │ ├── DPInst.xml │ ├── EULA.txt │ ├── HID Wiimote Package.vcxproj │ ├── HID Wiimote Package.vcxproj.backup │ ├── HID Wiimote Package.vcxproj.filters │ └── Readme.txt ├── HID Wiimote User Mode/ │ ├── AssemblyInfo.cpp │ ├── HID Wiimote User Mode.rc │ ├── HID Wiimote User Mode.vcxproj │ ├── HID Wiimote User Mode.vcxproj.filters │ ├── IWiimoteDeviceInterface.h │ ├── Log.cpp │ ├── Log.h │ ├── State.cpp │ ├── State.h │ ├── Status.cpp │ ├── Status.h │ ├── Stdafx.cpp │ ├── Stdafx.h │ ├── WiimoteDeviceInterface.cpp │ ├── WiimoteDeviceInterface.h │ ├── WiimoteDeviceInterfaceDiscoverer.cpp │ ├── WiimoteDeviceInterfaceDiscoverer.h │ ├── WiimoteDeviceInterfaceEnumerator.cpp │ ├── WiimoteDeviceInterfaceEnumerator.h │ └── resource.h ├── HID Wiimote.sln ├── LICENSE.md ├── README.md └── ReleaseVersioning/ ├── ReleaseVersioning.vcxproj ├── ReleaseVersioning.vcxproj.filters ├── Version.js └── Version.wsf