├── .gitignore ├── LICENSE ├── PadReaderTest ├── App.config ├── PadReaderTest.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── README.md ├── RawInputInject ├── Examples.snk ├── Main.cs ├── Properties │ └── AssemblyInfo.cs └── RawInputInject.csproj ├── Sample App ├── Xbox One Controller.vcxproj ├── Xbox One Controller.vcxproj.filters ├── XboxController.cpp ├── libusb.lib ├── lusb0_usb.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── XInput DLL Wrapper ├── XInput DLL Wrapper.vcxproj ├── XInput DLL Wrapper.vcxproj.filters ├── XInput_XboxOne.cpp ├── XInput_XboxOne.def ├── XInput_XboxOne.h ├── dllmain.cpp ├── libusb.lib ├── lusb0_usb.h ├── resource.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── version.rc ├── XInputInject ├── Examples.snk ├── Main.cs ├── Properties │ └── AssemblyInfo.cs ├── Xinput.cs ├── XinputInject.csproj └── packages.config ├── Xbox One Controller.sln ├── XboxOneController ├── App.config ├── Examples.snk ├── Form1.Designer.cs ├── Form1.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── RemoteInterface.cs ├── XboxOneController.csproj └── app.manifest ├── XboxOnePadReader ├── ControllerReader.cs ├── Examples.snk ├── Properties │ └── AssemblyInfo.cs ├── ThreadController.cs ├── XboxOnePadReader.csproj └── packages.config └── lib └── LibUsbDotNet.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/LICENSE -------------------------------------------------------------------------------- /PadReaderTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/PadReaderTest/App.config -------------------------------------------------------------------------------- /PadReaderTest/PadReaderTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/PadReaderTest/PadReaderTest.csproj -------------------------------------------------------------------------------- /PadReaderTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/PadReaderTest/Program.cs -------------------------------------------------------------------------------- /PadReaderTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/PadReaderTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/README.md -------------------------------------------------------------------------------- /RawInputInject/Examples.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/RawInputInject/Examples.snk -------------------------------------------------------------------------------- /RawInputInject/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/RawInputInject/Main.cs -------------------------------------------------------------------------------- /RawInputInject/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/RawInputInject/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RawInputInject/RawInputInject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/RawInputInject/RawInputInject.csproj -------------------------------------------------------------------------------- /Sample App/Xbox One Controller.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/Sample App/Xbox One Controller.vcxproj -------------------------------------------------------------------------------- /Sample App/Xbox One Controller.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/Sample App/Xbox One Controller.vcxproj.filters -------------------------------------------------------------------------------- /Sample App/XboxController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/Sample App/XboxController.cpp -------------------------------------------------------------------------------- /Sample App/libusb.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/Sample App/libusb.lib -------------------------------------------------------------------------------- /Sample App/lusb0_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/Sample App/lusb0_usb.h -------------------------------------------------------------------------------- /Sample App/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/Sample App/stdafx.cpp -------------------------------------------------------------------------------- /Sample App/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/Sample App/stdafx.h -------------------------------------------------------------------------------- /Sample App/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/Sample App/targetver.h -------------------------------------------------------------------------------- /XInput DLL Wrapper/XInput DLL Wrapper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XInput DLL Wrapper/XInput DLL Wrapper.vcxproj -------------------------------------------------------------------------------- /XInput DLL Wrapper/XInput DLL Wrapper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XInput DLL Wrapper/XInput DLL Wrapper.vcxproj.filters -------------------------------------------------------------------------------- /XInput DLL Wrapper/XInput_XboxOne.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XInput DLL Wrapper/XInput_XboxOne.cpp -------------------------------------------------------------------------------- /XInput DLL Wrapper/XInput_XboxOne.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XInput DLL Wrapper/XInput_XboxOne.def -------------------------------------------------------------------------------- /XInput DLL Wrapper/XInput_XboxOne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XInput DLL Wrapper/XInput_XboxOne.h -------------------------------------------------------------------------------- /XInput DLL Wrapper/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XInput DLL Wrapper/dllmain.cpp -------------------------------------------------------------------------------- /XInput DLL Wrapper/libusb.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XInput DLL Wrapper/libusb.lib -------------------------------------------------------------------------------- /XInput DLL Wrapper/lusb0_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XInput DLL Wrapper/lusb0_usb.h -------------------------------------------------------------------------------- /XInput DLL Wrapper/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XInput DLL Wrapper/resource.h -------------------------------------------------------------------------------- /XInput DLL Wrapper/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XInput DLL Wrapper/stdafx.cpp -------------------------------------------------------------------------------- /XInput DLL Wrapper/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XInput DLL Wrapper/stdafx.h -------------------------------------------------------------------------------- /XInput DLL Wrapper/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XInput DLL Wrapper/targetver.h -------------------------------------------------------------------------------- /XInput DLL Wrapper/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XInput DLL Wrapper/version.rc -------------------------------------------------------------------------------- /XInputInject/Examples.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XInputInject/Examples.snk -------------------------------------------------------------------------------- /XInputInject/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XInputInject/Main.cs -------------------------------------------------------------------------------- /XInputInject/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XInputInject/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XInputInject/Xinput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XInputInject/Xinput.cs -------------------------------------------------------------------------------- /XInputInject/XinputInject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XInputInject/XinputInject.csproj -------------------------------------------------------------------------------- /XInputInject/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XInputInject/packages.config -------------------------------------------------------------------------------- /Xbox One Controller.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/Xbox One Controller.sln -------------------------------------------------------------------------------- /XboxOneController/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XboxOneController/App.config -------------------------------------------------------------------------------- /XboxOneController/Examples.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XboxOneController/Examples.snk -------------------------------------------------------------------------------- /XboxOneController/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XboxOneController/Form1.Designer.cs -------------------------------------------------------------------------------- /XboxOneController/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XboxOneController/Form1.cs -------------------------------------------------------------------------------- /XboxOneController/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XboxOneController/Program.cs -------------------------------------------------------------------------------- /XboxOneController/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XboxOneController/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XboxOneController/RemoteInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XboxOneController/RemoteInterface.cs -------------------------------------------------------------------------------- /XboxOneController/XboxOneController.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XboxOneController/XboxOneController.csproj -------------------------------------------------------------------------------- /XboxOneController/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XboxOneController/app.manifest -------------------------------------------------------------------------------- /XboxOnePadReader/ControllerReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XboxOnePadReader/ControllerReader.cs -------------------------------------------------------------------------------- /XboxOnePadReader/Examples.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XboxOnePadReader/Examples.snk -------------------------------------------------------------------------------- /XboxOnePadReader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XboxOnePadReader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XboxOnePadReader/ThreadController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XboxOnePadReader/ThreadController.cs -------------------------------------------------------------------------------- /XboxOnePadReader/XboxOnePadReader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XboxOnePadReader/XboxOnePadReader.csproj -------------------------------------------------------------------------------- /XboxOnePadReader/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/XboxOnePadReader/packages.config -------------------------------------------------------------------------------- /lib/LibUsbDotNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roblambell/XboxOneController/HEAD/lib/LibUsbDotNet.dll --------------------------------------------------------------------------------