├── .gitattributes ├── .gitignore ├── C# └── ViGEmWrapper │ ├── TestApp │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── TestApp.csproj │ ├── ViGEmWrapper.sln │ └── ViGEmWrapper │ ├── Client.cs │ ├── Ds4.cs │ ├── FodyWeavers.xml │ ├── Properties │ └── AssemblyInfo.cs │ ├── ViGEmWrapper.csproj │ ├── Xb360.cs │ └── packages.config ├── CHANGELOG.md ├── DS4 Example.ahk ├── LICENSE ├── Lib ├── AHK-ViGEm-Bus.ahk └── CLR.ahk ├── README.md └── XB360 Example.ahk /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/.gitignore -------------------------------------------------------------------------------- /C#/ViGEmWrapper/TestApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/C#/ViGEmWrapper/TestApp/App.config -------------------------------------------------------------------------------- /C#/ViGEmWrapper/TestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/C#/ViGEmWrapper/TestApp/Program.cs -------------------------------------------------------------------------------- /C#/ViGEmWrapper/TestApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/C#/ViGEmWrapper/TestApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/ViGEmWrapper/TestApp/TestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/C#/ViGEmWrapper/TestApp/TestApp.csproj -------------------------------------------------------------------------------- /C#/ViGEmWrapper/ViGEmWrapper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/C#/ViGEmWrapper/ViGEmWrapper.sln -------------------------------------------------------------------------------- /C#/ViGEmWrapper/ViGEmWrapper/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/C#/ViGEmWrapper/ViGEmWrapper/Client.cs -------------------------------------------------------------------------------- /C#/ViGEmWrapper/ViGEmWrapper/Ds4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/C#/ViGEmWrapper/ViGEmWrapper/Ds4.cs -------------------------------------------------------------------------------- /C#/ViGEmWrapper/ViGEmWrapper/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/C#/ViGEmWrapper/ViGEmWrapper/FodyWeavers.xml -------------------------------------------------------------------------------- /C#/ViGEmWrapper/ViGEmWrapper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/C#/ViGEmWrapper/ViGEmWrapper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/ViGEmWrapper/ViGEmWrapper/ViGEmWrapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/C#/ViGEmWrapper/ViGEmWrapper/ViGEmWrapper.csproj -------------------------------------------------------------------------------- /C#/ViGEmWrapper/ViGEmWrapper/Xb360.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/C#/ViGEmWrapper/ViGEmWrapper/Xb360.cs -------------------------------------------------------------------------------- /C#/ViGEmWrapper/ViGEmWrapper/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/C#/ViGEmWrapper/ViGEmWrapper/packages.config -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DS4 Example.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/DS4 Example.ahk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/LICENSE -------------------------------------------------------------------------------- /Lib/AHK-ViGEm-Bus.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/Lib/AHK-ViGEm-Bus.ahk -------------------------------------------------------------------------------- /Lib/CLR.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/Lib/CLR.ahk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/README.md -------------------------------------------------------------------------------- /XB360 Example.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilC/AHK-ViGEm-Bus/HEAD/XB360 Example.ahk --------------------------------------------------------------------------------