├── .gitattributes ├── .gitignore ├── BuildAll.bat ├── BuildAll_Brunner.bat ├── BuildSetup_Brunner.bat ├── CodingStyleCPP.vssettings ├── CreateSdk.bat ├── CreateSdk_Brunner.bat ├── CreateVersion ├── CreateVersion.cpp ├── CreateVersion.vcxproj ├── CreateVersion.vcxproj.filters ├── output-git-desc.h ├── resource.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── version.rc ├── DigiCertUtil.exe ├── LICENSE.txt ├── Latest.php ├── README.md ├── SDK ├── ReadMe.odt ├── c# │ ├── FeederDemoCS │ │ ├── FeederDemoCS.csproj │ │ ├── FeederDemoCS.sln │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ ├── ReadMe.odt │ └── x64 │ │ ├── vJoyInterface.dll │ │ └── vJoyInterfaceWrap.dll ├── inc │ ├── gen-versioninfo.h │ ├── public.h │ └── vjoyinterface.h └── src │ ├── stdafx.h │ ├── vJoyClient.cpp │ ├── vJoyClient.sln │ ├── vJoyClient.vcproj │ └── vJoyClient.vcxproj ├── Tools ├── testsigndev_pwd_test.pfx ├── testsigntarget.cer └── windbg.appinstaller ├── apps ├── External │ ├── DLL │ │ ├── x64 │ │ │ ├── mfc140u.dll │ │ │ ├── msvcp140.dll │ │ │ ├── msvcp140_1.dll │ │ │ ├── vGenInterface.dll │ │ │ ├── vJoyMonitor.dll │ │ │ └── vcruntime140.dll │ │ └── x86 │ │ │ ├── vGenInterface.dll │ │ │ └── vJoyMonitor.dll │ └── JoyMonitor │ │ ├── x64 │ │ ├── JoyMonitor.exe │ │ ├── msvcp120.dll │ │ └── msvcr120.dll │ │ └── x86 │ │ ├── JoyMonitor.exe │ │ ├── msvcp120.dll │ │ └── msvcr120.dll ├── FfbMon │ ├── FfbMon.cpp │ ├── FfbMon.h │ ├── FfbMon.sln │ ├── FfbMon.vcxproj │ ├── bldFfbMon.bat │ ├── makefile │ ├── makefile.inc │ ├── sources │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Monitor │ ├── DXUT │ │ ├── Core │ │ │ └── dpiaware.manifest │ │ └── Optional │ │ │ └── directx.ico │ ├── Joystick.aps │ ├── Joystick.cpp │ ├── Joystick.gif │ ├── Joystick.rc │ ├── Joystick_2008.ncb │ ├── Joystick_2008.sdf │ ├── Joystick_2008.sln │ ├── Joystick_2008.suo │ ├── Joystick_2008.vcproj │ ├── Joystick_2008.vcxproj │ └── resource.h ├── SignApps.bat ├── common │ ├── vJoyInterface │ │ ├── bldInterface.bat │ │ ├── makefile │ │ ├── makefile.inc │ │ ├── sources │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── svn_version.h.tmpl │ │ ├── targetver.h │ │ ├── vJoyInterface.cpp │ │ ├── vJoyInterface.def │ │ ├── vJoyInterface.rc │ │ ├── vJoyInterface.ruleset │ │ ├── vJoyInterface.sln │ │ ├── vJoyInterface.vcproj │ │ ├── vJoyInterface.vcxproj │ │ ├── vJoyInterface2012.sln │ │ ├── vJoyInterface2012.vcxproj │ │ ├── vJoyInterface2012.vcxproj.filters │ │ ├── version.rc │ │ └── vjoyinterface.h │ ├── vJoyInterfaceCS │ │ ├── Version │ │ │ ├── Properties │ │ │ │ └── GlobalAssemblyInfo.cs.tmpl │ │ │ ├── Version.csproj │ │ │ └── dummy.cs │ │ ├── WrapperTest.vcxproj │ │ ├── WrapperTest │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ └── Settings.Designer.cs │ │ │ ├── TesterForm.Designer.cs │ │ │ ├── TesterForm.cs │ │ │ ├── TesterForm.resx │ │ │ ├── WrapperTest.csproj │ │ │ ├── app.config │ │ │ ├── bldTester.bat │ │ │ ├── makefile │ │ │ ├── makefile.inc │ │ │ └── sources │ │ ├── bldvJoyCS.bat │ │ ├── makefile │ │ ├── makefile.inc │ │ ├── sources │ │ ├── vJoyInterfaceCS.sln │ │ └── vJoyInterfaceWrap │ │ │ ├── GlobalAssemblyInfo.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── Wrapper.cs │ │ │ ├── bldWrapper.bat │ │ │ ├── makefile │ │ │ ├── makefile.inc │ │ │ ├── sources │ │ │ └── vJoyInterfaceWrap.csproj │ └── vJoyInterfaceStat │ │ ├── stdafx.h │ │ ├── targetver.h │ │ ├── vJoyInterface.def │ │ ├── vJoyInterface.sln │ │ ├── vJoyInterface.vcproj │ │ ├── vJoyInterface.vcxproj │ │ ├── vJoyInterface2012.sln │ │ ├── vJoyInterface2012.vcxproj.filters │ │ ├── vJoyInterfaceStat2012.vcxproj │ │ ├── vJoyInterfaceStat2012.vcxproj.filters │ │ └── version.rc ├── vGenInterface │ ├── Private.h │ ├── ReadMe.txt │ ├── dllmain.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ ├── vGenInterface.cpp │ ├── vGenInterface.h │ ├── vGenInterface.vcxproj │ ├── vGenInterface.vcxproj.filters │ └── vGenTest │ │ ├── CompatTest │ │ ├── CompatTest.cpp │ │ ├── CompatTest.vcxproj │ │ ├── CompatTest.vcxproj.filters │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ │ ├── FreeDev │ │ ├── FreeDev.cpp │ │ ├── FreeDev.vcxproj │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ │ ├── vGenTest.cpp │ │ ├── vGenTest.vcxproj │ │ └── vXboxTest │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── targetver.h │ │ ├── vXboxTest.cpp │ │ ├── vXboxTest.vcxproj │ │ └── vXboxTest.vcxproj.filters ├── vJoyClient │ ├── ReadMe.txt │ ├── makefile │ ├── makefile.inc │ ├── sources │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ ├── vJoyClient.cpp │ ├── vJoyClient.sln │ ├── vJoyClient.vcproj │ ├── vJoyClient.vcproj.Shaul-Ivory2010.Shaul.user │ ├── vJoyClient.vcxproj │ ├── vJoyClient.vcxproj.user │ └── vjoyclient.h ├── vJoyConf │ ├── AssemblyInfo.cpp │ ├── Form1.h │ ├── Form1.resx │ ├── Joystick-icon.ico │ ├── ReadMe.txt │ ├── TabIcon │ │ ├── 1-Off.ico │ │ ├── 1-On.ico │ │ ├── 10-Off.ico │ │ ├── 10-On.ico │ │ ├── 11-Off.ico │ │ ├── 11-On.ico │ │ ├── 12-Off.ico │ │ ├── 12-On.ico │ │ ├── 13-Off.ico │ │ ├── 13-On.ico │ │ ├── 14-Off.ico │ │ ├── 14-On.ico │ │ ├── 15-Off.ico │ │ ├── 15-On.ico │ │ ├── 16-Del.ico │ │ ├── 16-Off.ico │ │ ├── 16-On.ico │ │ ├── 2-Off.ico │ │ ├── 2-On.ico │ │ ├── 3-Off.ico │ │ ├── 3-On.ico │ │ ├── 4-Off.ico │ │ ├── 4-On.ico │ │ ├── 5-Off.ico │ │ ├── 5-On.ico │ │ ├── 6-Off.ico │ │ ├── 6-On.ico │ │ ├── 7-Off.ico │ │ ├── 7-On.ico │ │ ├── 8-Off.ico │ │ ├── 8-On.ico │ │ ├── 9-Off.ico │ │ ├── 9-On.ico │ │ └── Frame.ico │ ├── app.ico │ ├── app.rc │ ├── bldConf.bat │ ├── declarations.h │ ├── hidReportDescFfb.h │ ├── hidtoken.h │ ├── hidusage.h │ ├── makefile │ ├── makefile.inc │ ├── resource.h │ ├── sources │ ├── stdafx.cpp │ ├── stdafx.h │ ├── svn_version.h.tmpl │ ├── targetver.h │ ├── vJoyConf.cpp │ ├── vJoyConf.exe.Win32.manifest │ ├── vJoyConf.exe.x64.manifest │ ├── vJoyConf.h │ ├── vJoyConf.ico │ ├── vJoyConf.rc │ ├── vJoyConf.sln │ ├── vJoyConf.vcxproj │ ├── vJoyConf.vcxproj.filters │ ├── vJoyConfig │ │ ├── Header.h │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── svn_version.h.tmpl │ │ ├── targetver.h │ │ ├── vJoyConfig.cpp │ │ ├── vJoyConfig.h │ │ ├── vJoyConfig.rc │ │ ├── vJoyConfig.sln │ │ ├── vJoyConfig.vcxproj │ │ ├── vJoyConfig.vcxproj.filters │ │ └── version.rc │ ├── vJoyDevice.cpp │ ├── vJoyDevice.h │ └── version.rc ├── vJoyDemo │ ├── AssemblyInfo.cpp │ ├── Form1.h │ ├── Form1.resX │ ├── FunkyLibrary.dll │ ├── Joystick-icon.ico │ ├── LBIndustrialCtrls.dll │ ├── PPJIoctl.h │ ├── ReadMe.txt │ ├── app.rc │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── vJoyClient.cpp │ ├── vJoyDemo.cpp │ ├── vJoyDemo.sln │ ├── vJoyDemo.vcproj │ └── vjoyclient.h ├── vJoyFeeder │ ├── AssemblyInfo.cpp │ ├── Form1.h │ ├── Form1.resx │ ├── FunkyLibrary.dll │ ├── Joystick-Feeder-icon.ico │ ├── Joystick-icon.ico │ ├── LBIndustrialCtrls.dll │ ├── ReadMe.txt │ ├── app.rc │ ├── bldFeeder.bat │ ├── makefile │ ├── makefile.inc │ ├── resource.h │ ├── sources │ ├── stdafx.cpp │ ├── stdafx.h │ ├── svn_version.h.tmpl │ ├── vJoyClient.cpp │ ├── vJoyFeeder.cpp │ ├── vJoyFeeder.sln │ ├── vJoyFeeder.vcproj │ ├── vJoyFeeder.vcxproj │ ├── vJoyFeeder.vcxproj.user │ └── vjoyclient.h ├── vJoyInstall │ ├── CmdLine │ │ ├── stdafx.cpp │ │ ├── vJoyInstall.cpp │ │ ├── vJoyInstall.rc │ │ ├── vJoyInstall.vcxproj │ │ ├── vJoyInstall.vcxproj.filters │ │ ├── vJoyInstallx64.exe.manifest │ │ └── vJoyInstallx86.exe.manifest │ ├── GTK │ │ ├── Install.c │ │ ├── Install.exe.manifest │ │ ├── Joystick-icon.ico │ │ ├── Joystick-icon.png │ │ ├── buildgtk │ │ ├── buildtest │ │ ├── install.glade │ │ ├── install.h │ │ ├── install.ico │ │ ├── install.rc │ │ ├── makefile.inc │ │ ├── setup_x64.SED │ │ ├── setup_x86.SED │ │ ├── sources │ │ ├── svn_version.h.tmpl │ │ ├── vJoyInstall.def │ │ ├── vJoyInstall.rc │ │ ├── vJoyInstall.vcxproj │ │ ├── wrapper.cpp │ │ └── wrapper.h │ ├── Joystick-icon.ico │ ├── Joystick-icon.png │ ├── dirs │ ├── install.h │ ├── install.ico │ ├── stdafx.h │ ├── targetver.h │ ├── vJoyInstall.def │ ├── vJoyInstall.h │ ├── vJoyInstall.rc │ ├── vJoyInstall.vcxproj │ ├── vJoyInstall.vcxproj.filters │ ├── vJoyInstallLib.cpp │ ├── wrapper.cpp │ └── wrapper.h └── vJoyList │ ├── MyMFCListCtrl.cpp │ ├── MyMFCListCtrl.h │ ├── ReadMe.txt │ ├── res │ ├── Joystick-icon.ico │ ├── vJoyList.ico │ ├── vJoyList.rc2 │ └── version.rc │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ ├── vJoyList.cpp │ ├── vJoyList.h │ ├── vJoyList.rc │ ├── vJoyList.vcxproj │ ├── vJoyList.vcxproj.filters │ ├── vJoyListDlg.cpp │ └── vJoyListDlg.h ├── docs ├── Flexible vJoy descriptor.odt ├── How to prevent more than one vJoy device.odt ├── Inno_Setup_Installer.odt ├── OverView.odt ├── Position Datapath.odt ├── ReadMe.md ├── hid1_11.pdf ├── hut1_12v2.pdf ├── pid1_01.pdf ├── readme │ └── Driver_store_2.png ├── vGenInterface.odt ├── vJoy 1.0.3 - configurable driver.odt ├── vJoy215RN01.odt └── vJoyInterface.odt ├── driver ├── Package │ ├── Package.vcxproj │ ├── Package.vcxproj.filters │ └── Package.vcxproj.user ├── hidmapper │ ├── hidkmdf.c │ ├── hidkmdf.rc │ ├── hidkmdf.vcxproj │ ├── hidkmdf.vcxproj.user │ ├── hidkmdf32.sys │ ├── hidkmdf64.sys │ ├── makefile.inc.props │ └── sources.props └── sys │ ├── driver.c │ ├── errcodes.h │ ├── errcodes.mc │ ├── hid.c │ ├── hidReportDesc.h │ ├── hidReportDescSingle.h │ ├── rawpdo.c │ ├── rawpdo.h │ ├── trace.h │ ├── usb.c │ ├── vJoy.vcxproj │ ├── vJoy.vcxproj.filters │ ├── vJoy.vcxproj.user │ ├── vjoy.h │ ├── vjoy.inx │ └── vjoy.rc ├── inc ├── PPJIoctl.h ├── XOutput.h ├── gen-versioninfo.h ├── public.h └── wrapper.h ├── install ├── AddvJoyFFB.reg ├── Joystick-icon.ico ├── RemvJoyFFB.reg ├── SeTestCert.cer ├── SignDriver.bat ├── TraceView.ini ├── devcon.exe ├── driver.tmh ├── driver_signing_notice.bmp ├── install.bat ├── install.ico ├── reinstall.bat ├── remove.bat ├── vJoyInstallerMerged.iss ├── vJoyInstallerSigned.iss └── vJoyInstallerSigned_Brunner.iss ├── lib ├── objfre_wlh_amd64 │ └── amd64 │ │ ├── vJoyInstall.dll │ │ ├── vJoyInterface.dll │ │ └── vJoyInterface.lib └── objfre_wxp_x86 │ └── i386 │ ├── vJoyInstall.dll │ ├── vJoyInterface.dll │ └── vJoyInterface.lib ├── vJoyAll.sln ├── vJoyApps.sln └── vJoyDriver.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/.gitignore -------------------------------------------------------------------------------- /BuildAll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/BuildAll.bat -------------------------------------------------------------------------------- /BuildAll_Brunner.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/BuildAll_Brunner.bat -------------------------------------------------------------------------------- /BuildSetup_Brunner.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/BuildSetup_Brunner.bat -------------------------------------------------------------------------------- /CodingStyleCPP.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/CodingStyleCPP.vssettings -------------------------------------------------------------------------------- /CreateSdk.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/CreateSdk.bat -------------------------------------------------------------------------------- /CreateSdk_Brunner.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/CreateSdk_Brunner.bat -------------------------------------------------------------------------------- /CreateVersion/CreateVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/CreateVersion/CreateVersion.cpp -------------------------------------------------------------------------------- /CreateVersion/CreateVersion.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/CreateVersion/CreateVersion.vcxproj -------------------------------------------------------------------------------- /CreateVersion/CreateVersion.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/CreateVersion/CreateVersion.vcxproj.filters -------------------------------------------------------------------------------- /CreateVersion/output-git-desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/CreateVersion/output-git-desc.h -------------------------------------------------------------------------------- /CreateVersion/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/CreateVersion/resource.h -------------------------------------------------------------------------------- /CreateVersion/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/CreateVersion/stdafx.cpp -------------------------------------------------------------------------------- /CreateVersion/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/CreateVersion/stdafx.h -------------------------------------------------------------------------------- /CreateVersion/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/CreateVersion/targetver.h -------------------------------------------------------------------------------- /CreateVersion/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/CreateVersion/version.rc -------------------------------------------------------------------------------- /DigiCertUtil.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/DigiCertUtil.exe -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Latest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/Latest.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/README.md -------------------------------------------------------------------------------- /SDK/ReadMe.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/SDK/ReadMe.odt -------------------------------------------------------------------------------- /SDK/c#/FeederDemoCS/FeederDemoCS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/SDK/c#/FeederDemoCS/FeederDemoCS.csproj -------------------------------------------------------------------------------- /SDK/c#/FeederDemoCS/FeederDemoCS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/SDK/c#/FeederDemoCS/FeederDemoCS.sln -------------------------------------------------------------------------------- /SDK/c#/FeederDemoCS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/SDK/c#/FeederDemoCS/Program.cs -------------------------------------------------------------------------------- /SDK/c#/FeederDemoCS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/SDK/c#/FeederDemoCS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK/c#/FeederDemoCS/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/SDK/c#/FeederDemoCS/app.config -------------------------------------------------------------------------------- /SDK/c#/ReadMe.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/SDK/c#/ReadMe.odt -------------------------------------------------------------------------------- /SDK/c#/x64/vJoyInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/SDK/c#/x64/vJoyInterface.dll -------------------------------------------------------------------------------- /SDK/c#/x64/vJoyInterfaceWrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/SDK/c#/x64/vJoyInterfaceWrap.dll -------------------------------------------------------------------------------- /SDK/inc/gen-versioninfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/SDK/inc/gen-versioninfo.h -------------------------------------------------------------------------------- /SDK/inc/public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/SDK/inc/public.h -------------------------------------------------------------------------------- /SDK/inc/vjoyinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/SDK/inc/vjoyinterface.h -------------------------------------------------------------------------------- /SDK/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/SDK/src/stdafx.h -------------------------------------------------------------------------------- /SDK/src/vJoyClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/SDK/src/vJoyClient.cpp -------------------------------------------------------------------------------- /SDK/src/vJoyClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/SDK/src/vJoyClient.sln -------------------------------------------------------------------------------- /SDK/src/vJoyClient.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/SDK/src/vJoyClient.vcproj -------------------------------------------------------------------------------- /SDK/src/vJoyClient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/SDK/src/vJoyClient.vcxproj -------------------------------------------------------------------------------- /Tools/testsigndev_pwd_test.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/Tools/testsigndev_pwd_test.pfx -------------------------------------------------------------------------------- /Tools/testsigntarget.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/Tools/testsigntarget.cer -------------------------------------------------------------------------------- /Tools/windbg.appinstaller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/Tools/windbg.appinstaller -------------------------------------------------------------------------------- /apps/External/DLL/x64/mfc140u.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/External/DLL/x64/mfc140u.dll -------------------------------------------------------------------------------- /apps/External/DLL/x64/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/External/DLL/x64/msvcp140.dll -------------------------------------------------------------------------------- /apps/External/DLL/x64/msvcp140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/External/DLL/x64/msvcp140_1.dll -------------------------------------------------------------------------------- /apps/External/DLL/x64/vGenInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/External/DLL/x64/vGenInterface.dll -------------------------------------------------------------------------------- /apps/External/DLL/x64/vJoyMonitor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/External/DLL/x64/vJoyMonitor.dll -------------------------------------------------------------------------------- /apps/External/DLL/x64/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/External/DLL/x64/vcruntime140.dll -------------------------------------------------------------------------------- /apps/External/DLL/x86/vGenInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/External/DLL/x86/vGenInterface.dll -------------------------------------------------------------------------------- /apps/External/DLL/x86/vJoyMonitor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/External/DLL/x86/vJoyMonitor.dll -------------------------------------------------------------------------------- /apps/External/JoyMonitor/x64/JoyMonitor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/External/JoyMonitor/x64/JoyMonitor.exe -------------------------------------------------------------------------------- /apps/External/JoyMonitor/x64/msvcp120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/External/JoyMonitor/x64/msvcp120.dll -------------------------------------------------------------------------------- /apps/External/JoyMonitor/x64/msvcr120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/External/JoyMonitor/x64/msvcr120.dll -------------------------------------------------------------------------------- /apps/External/JoyMonitor/x86/JoyMonitor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/External/JoyMonitor/x86/JoyMonitor.exe -------------------------------------------------------------------------------- /apps/External/JoyMonitor/x86/msvcp120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/External/JoyMonitor/x86/msvcp120.dll -------------------------------------------------------------------------------- /apps/External/JoyMonitor/x86/msvcr120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/External/JoyMonitor/x86/msvcr120.dll -------------------------------------------------------------------------------- /apps/FfbMon/FfbMon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/FfbMon/FfbMon.cpp -------------------------------------------------------------------------------- /apps/FfbMon/FfbMon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/FfbMon/FfbMon.h -------------------------------------------------------------------------------- /apps/FfbMon/FfbMon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/FfbMon/FfbMon.sln -------------------------------------------------------------------------------- /apps/FfbMon/FfbMon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/FfbMon/FfbMon.vcxproj -------------------------------------------------------------------------------- /apps/FfbMon/bldFfbMon.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/FfbMon/bldFfbMon.bat -------------------------------------------------------------------------------- /apps/FfbMon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/FfbMon/makefile -------------------------------------------------------------------------------- /apps/FfbMon/makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/FfbMon/makefile.inc -------------------------------------------------------------------------------- /apps/FfbMon/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/FfbMon/sources -------------------------------------------------------------------------------- /apps/FfbMon/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/FfbMon/stdafx.cpp -------------------------------------------------------------------------------- /apps/FfbMon/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/FfbMon/stdafx.h -------------------------------------------------------------------------------- /apps/FfbMon/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/FfbMon/targetver.h -------------------------------------------------------------------------------- /apps/Monitor/DXUT/Core/dpiaware.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/Monitor/DXUT/Core/dpiaware.manifest -------------------------------------------------------------------------------- /apps/Monitor/DXUT/Optional/directx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/Monitor/DXUT/Optional/directx.ico -------------------------------------------------------------------------------- /apps/Monitor/Joystick.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/Monitor/Joystick.aps -------------------------------------------------------------------------------- /apps/Monitor/Joystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/Monitor/Joystick.cpp -------------------------------------------------------------------------------- /apps/Monitor/Joystick.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/Monitor/Joystick.gif -------------------------------------------------------------------------------- /apps/Monitor/Joystick.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/Monitor/Joystick.rc -------------------------------------------------------------------------------- /apps/Monitor/Joystick_2008.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/Monitor/Joystick_2008.ncb -------------------------------------------------------------------------------- /apps/Monitor/Joystick_2008.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/Monitor/Joystick_2008.sdf -------------------------------------------------------------------------------- /apps/Monitor/Joystick_2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/Monitor/Joystick_2008.sln -------------------------------------------------------------------------------- /apps/Monitor/Joystick_2008.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/Monitor/Joystick_2008.suo -------------------------------------------------------------------------------- /apps/Monitor/Joystick_2008.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/Monitor/Joystick_2008.vcproj -------------------------------------------------------------------------------- /apps/Monitor/Joystick_2008.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/Monitor/Joystick_2008.vcxproj -------------------------------------------------------------------------------- /apps/Monitor/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/Monitor/resource.h -------------------------------------------------------------------------------- /apps/SignApps.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/SignApps.bat -------------------------------------------------------------------------------- /apps/common/vJoyInterface/bldInterface.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterface/bldInterface.bat -------------------------------------------------------------------------------- /apps/common/vJoyInterface/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterface/makefile -------------------------------------------------------------------------------- /apps/common/vJoyInterface/makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterface/makefile.inc -------------------------------------------------------------------------------- /apps/common/vJoyInterface/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterface/sources -------------------------------------------------------------------------------- /apps/common/vJoyInterface/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterface/stdafx.cpp -------------------------------------------------------------------------------- /apps/common/vJoyInterface/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterface/stdafx.h -------------------------------------------------------------------------------- /apps/common/vJoyInterface/svn_version.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterface/svn_version.h.tmpl -------------------------------------------------------------------------------- /apps/common/vJoyInterface/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterface/targetver.h -------------------------------------------------------------------------------- /apps/common/vJoyInterface/vJoyInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterface/vJoyInterface.cpp -------------------------------------------------------------------------------- /apps/common/vJoyInterface/vJoyInterface.def: -------------------------------------------------------------------------------- 1 | LIBRARY vJoyInterface 2 | 3 | 4 | -------------------------------------------------------------------------------- /apps/common/vJoyInterface/vJoyInterface.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterface/vJoyInterface.rc -------------------------------------------------------------------------------- /apps/common/vJoyInterface/vJoyInterface.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterface/vJoyInterface.ruleset -------------------------------------------------------------------------------- /apps/common/vJoyInterface/vJoyInterface.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterface/vJoyInterface.sln -------------------------------------------------------------------------------- /apps/common/vJoyInterface/vJoyInterface.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterface/vJoyInterface.vcproj -------------------------------------------------------------------------------- /apps/common/vJoyInterface/vJoyInterface.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterface/vJoyInterface.vcxproj -------------------------------------------------------------------------------- /apps/common/vJoyInterface/vJoyInterface2012.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterface/vJoyInterface2012.sln -------------------------------------------------------------------------------- /apps/common/vJoyInterface/vJoyInterface2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterface/vJoyInterface2012.vcxproj -------------------------------------------------------------------------------- /apps/common/vJoyInterface/vJoyInterface2012.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterface/vJoyInterface2012.vcxproj.filters -------------------------------------------------------------------------------- /apps/common/vJoyInterface/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterface/version.rc -------------------------------------------------------------------------------- /apps/common/vJoyInterface/vjoyinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterface/vjoyinterface.h -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/Version/Properties/GlobalAssemblyInfo.cs.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/Version/Properties/GlobalAssemblyInfo.cs.tmpl -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/Version/Version.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/Version/Version.csproj -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/Version/dummy.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/WrapperTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/WrapperTest.vcxproj -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/WrapperTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/WrapperTest/Program.cs -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/WrapperTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/WrapperTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/WrapperTest/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/WrapperTest/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/WrapperTest/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/WrapperTest/Properties/Resources.resx -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/WrapperTest/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/WrapperTest/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/WrapperTest/TesterForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/WrapperTest/TesterForm.Designer.cs -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/WrapperTest/TesterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/WrapperTest/TesterForm.cs -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/WrapperTest/TesterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/WrapperTest/TesterForm.resx -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/WrapperTest/WrapperTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/WrapperTest/WrapperTest.csproj -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/WrapperTest/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/WrapperTest/app.config -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/WrapperTest/bldTester.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/WrapperTest/bldTester.bat -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/WrapperTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/WrapperTest/makefile -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/WrapperTest/makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/WrapperTest/makefile.inc -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/WrapperTest/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/WrapperTest/sources -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/bldvJoyCS.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/bldvJoyCS.bat -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/makefile -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/makefile.inc: -------------------------------------------------------------------------------- 1 | 2 | # Create WrapperTest.exe 3 | $(OBJ_PATH)\$O\$(TARGETNAME).exe: 4 | bldvJoyCS.bat 5 | 6 | -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/sources -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/vJoyInterfaceCS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/vJoyInterfaceCS.sln -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/vJoyInterfaceWrap/GlobalAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/vJoyInterfaceWrap/GlobalAssemblyInfo.cs -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/vJoyInterfaceWrap/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/vJoyInterfaceWrap/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/vJoyInterfaceWrap/Wrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/vJoyInterfaceWrap/Wrapper.cs -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/vJoyInterfaceWrap/bldWrapper.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/vJoyInterfaceWrap/bldWrapper.bat -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/vJoyInterfaceWrap/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/vJoyInterfaceWrap/makefile -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/vJoyInterfaceWrap/makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/vJoyInterfaceWrap/makefile.inc -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/vJoyInterfaceWrap/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/vJoyInterfaceWrap/sources -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceCS/vJoyInterfaceWrap/vJoyInterfaceWrap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceCS/vJoyInterfaceWrap/vJoyInterfaceWrap.csproj -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceStat/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceStat/stdafx.h -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceStat/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceStat/targetver.h -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceStat/vJoyInterface.def: -------------------------------------------------------------------------------- 1 | LIBRARY vJoyInterface 2 | 3 | 4 | -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceStat/vJoyInterface.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceStat/vJoyInterface.sln -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceStat/vJoyInterface.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceStat/vJoyInterface.vcproj -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceStat/vJoyInterface.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceStat/vJoyInterface.vcxproj -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceStat/vJoyInterface2012.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceStat/vJoyInterface2012.sln -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceStat/vJoyInterface2012.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceStat/vJoyInterface2012.vcxproj.filters -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceStat/vJoyInterfaceStat2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceStat/vJoyInterfaceStat2012.vcxproj -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceStat/vJoyInterfaceStat2012.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceStat/vJoyInterfaceStat2012.vcxproj.filters -------------------------------------------------------------------------------- /apps/common/vJoyInterfaceStat/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/common/vJoyInterfaceStat/version.rc -------------------------------------------------------------------------------- /apps/vGenInterface/Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/Private.h -------------------------------------------------------------------------------- /apps/vGenInterface/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/ReadMe.txt -------------------------------------------------------------------------------- /apps/vGenInterface/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/dllmain.cpp -------------------------------------------------------------------------------- /apps/vGenInterface/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/stdafx.cpp -------------------------------------------------------------------------------- /apps/vGenInterface/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/stdafx.h -------------------------------------------------------------------------------- /apps/vGenInterface/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/targetver.h -------------------------------------------------------------------------------- /apps/vGenInterface/vGenInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenInterface.cpp -------------------------------------------------------------------------------- /apps/vGenInterface/vGenInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenInterface.h -------------------------------------------------------------------------------- /apps/vGenInterface/vGenInterface.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenInterface.vcxproj -------------------------------------------------------------------------------- /apps/vGenInterface/vGenInterface.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenInterface.vcxproj.filters -------------------------------------------------------------------------------- /apps/vGenInterface/vGenTest/CompatTest/CompatTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenTest/CompatTest/CompatTest.cpp -------------------------------------------------------------------------------- /apps/vGenInterface/vGenTest/CompatTest/CompatTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenTest/CompatTest/CompatTest.vcxproj -------------------------------------------------------------------------------- /apps/vGenInterface/vGenTest/CompatTest/CompatTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenTest/CompatTest/CompatTest.vcxproj.filters -------------------------------------------------------------------------------- /apps/vGenInterface/vGenTest/CompatTest/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenTest/CompatTest/stdafx.cpp -------------------------------------------------------------------------------- /apps/vGenInterface/vGenTest/CompatTest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenTest/CompatTest/stdafx.h -------------------------------------------------------------------------------- /apps/vGenInterface/vGenTest/CompatTest/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenTest/CompatTest/targetver.h -------------------------------------------------------------------------------- /apps/vGenInterface/vGenTest/FreeDev/FreeDev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenTest/FreeDev/FreeDev.cpp -------------------------------------------------------------------------------- /apps/vGenInterface/vGenTest/FreeDev/FreeDev.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenTest/FreeDev/FreeDev.vcxproj -------------------------------------------------------------------------------- /apps/vGenInterface/vGenTest/FreeDev/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenTest/FreeDev/stdafx.cpp -------------------------------------------------------------------------------- /apps/vGenInterface/vGenTest/FreeDev/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenTest/FreeDev/stdafx.h -------------------------------------------------------------------------------- /apps/vGenInterface/vGenTest/FreeDev/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenTest/FreeDev/targetver.h -------------------------------------------------------------------------------- /apps/vGenInterface/vGenTest/vGenTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenTest/vGenTest.cpp -------------------------------------------------------------------------------- /apps/vGenInterface/vGenTest/vGenTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenTest/vGenTest.vcxproj -------------------------------------------------------------------------------- /apps/vGenInterface/vGenTest/vXboxTest/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenTest/vXboxTest/stdafx.cpp -------------------------------------------------------------------------------- /apps/vGenInterface/vGenTest/vXboxTest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenTest/vXboxTest/stdafx.h -------------------------------------------------------------------------------- /apps/vGenInterface/vGenTest/vXboxTest/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenTest/vXboxTest/targetver.h -------------------------------------------------------------------------------- /apps/vGenInterface/vGenTest/vXboxTest/vXboxTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenTest/vXboxTest/vXboxTest.cpp -------------------------------------------------------------------------------- /apps/vGenInterface/vGenTest/vXboxTest/vXboxTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenTest/vXboxTest/vXboxTest.vcxproj -------------------------------------------------------------------------------- /apps/vGenInterface/vGenTest/vXboxTest/vXboxTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vGenInterface/vGenTest/vXboxTest/vXboxTest.vcxproj.filters -------------------------------------------------------------------------------- /apps/vJoyClient/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyClient/ReadMe.txt -------------------------------------------------------------------------------- /apps/vJoyClient/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyClient/makefile -------------------------------------------------------------------------------- /apps/vJoyClient/makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyClient/makefile.inc -------------------------------------------------------------------------------- /apps/vJoyClient/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyClient/sources -------------------------------------------------------------------------------- /apps/vJoyClient/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyClient/stdafx.cpp -------------------------------------------------------------------------------- /apps/vJoyClient/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyClient/stdafx.h -------------------------------------------------------------------------------- /apps/vJoyClient/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyClient/targetver.h -------------------------------------------------------------------------------- /apps/vJoyClient/vJoyClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyClient/vJoyClient.cpp -------------------------------------------------------------------------------- /apps/vJoyClient/vJoyClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyClient/vJoyClient.sln -------------------------------------------------------------------------------- /apps/vJoyClient/vJoyClient.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyClient/vJoyClient.vcproj -------------------------------------------------------------------------------- /apps/vJoyClient/vJoyClient.vcproj.Shaul-Ivory2010.Shaul.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyClient/vJoyClient.vcproj.Shaul-Ivory2010.Shaul.user -------------------------------------------------------------------------------- /apps/vJoyClient/vJoyClient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyClient/vJoyClient.vcxproj -------------------------------------------------------------------------------- /apps/vJoyClient/vJoyClient.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyClient/vJoyClient.vcxproj.user -------------------------------------------------------------------------------- /apps/vJoyClient/vjoyclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyClient/vjoyclient.h -------------------------------------------------------------------------------- /apps/vJoyConf/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/AssemblyInfo.cpp -------------------------------------------------------------------------------- /apps/vJoyConf/Form1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/Form1.h -------------------------------------------------------------------------------- /apps/vJoyConf/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/Form1.resx -------------------------------------------------------------------------------- /apps/vJoyConf/Joystick-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/Joystick-icon.ico -------------------------------------------------------------------------------- /apps/vJoyConf/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/ReadMe.txt -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/1-Off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/1-Off.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/1-On.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/1-On.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/10-Off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/10-Off.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/10-On.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/10-On.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/11-Off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/11-Off.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/11-On.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/11-On.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/12-Off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/12-Off.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/12-On.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/12-On.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/13-Off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/13-Off.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/13-On.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/13-On.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/14-Off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/14-Off.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/14-On.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/14-On.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/15-Off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/15-Off.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/15-On.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/15-On.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/16-Del.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/16-Del.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/16-Off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/16-Off.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/16-On.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/16-On.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/2-Off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/2-Off.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/2-On.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/2-On.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/3-Off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/3-Off.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/3-On.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/3-On.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/4-Off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/4-Off.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/4-On.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/4-On.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/5-Off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/5-Off.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/5-On.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/5-On.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/6-Off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/6-Off.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/6-On.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/6-On.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/7-Off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/7-Off.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/7-On.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/7-On.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/8-Off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/8-Off.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/8-On.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/8-On.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/9-Off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/9-Off.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/9-On.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/9-On.ico -------------------------------------------------------------------------------- /apps/vJoyConf/TabIcon/Frame.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/TabIcon/Frame.ico -------------------------------------------------------------------------------- /apps/vJoyConf/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/app.ico -------------------------------------------------------------------------------- /apps/vJoyConf/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/app.rc -------------------------------------------------------------------------------- /apps/vJoyConf/bldConf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/bldConf.bat -------------------------------------------------------------------------------- /apps/vJoyConf/declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/declarations.h -------------------------------------------------------------------------------- /apps/vJoyConf/hidReportDescFfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/hidReportDescFfb.h -------------------------------------------------------------------------------- /apps/vJoyConf/hidtoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/hidtoken.h -------------------------------------------------------------------------------- /apps/vJoyConf/hidusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/hidusage.h -------------------------------------------------------------------------------- /apps/vJoyConf/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/makefile -------------------------------------------------------------------------------- /apps/vJoyConf/makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/makefile.inc -------------------------------------------------------------------------------- /apps/vJoyConf/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/resource.h -------------------------------------------------------------------------------- /apps/vJoyConf/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/sources -------------------------------------------------------------------------------- /apps/vJoyConf/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/stdafx.cpp -------------------------------------------------------------------------------- /apps/vJoyConf/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/stdafx.h -------------------------------------------------------------------------------- /apps/vJoyConf/svn_version.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/svn_version.h.tmpl -------------------------------------------------------------------------------- /apps/vJoyConf/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/targetver.h -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConf.cpp -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConf.exe.Win32.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConf.exe.Win32.manifest -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConf.exe.x64.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConf.exe.x64.manifest -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConf.h -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConf.ico -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConf.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConf.rc -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConf.sln -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConf.vcxproj -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConf.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConf.vcxproj.filters -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConfig/Header.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConfig/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConfig/resource.h -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConfig/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConfig/stdafx.cpp -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConfig/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConfig/stdafx.h -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConfig/svn_version.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConfig/svn_version.h.tmpl -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConfig/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConfig/targetver.h -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConfig/vJoyConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConfig/vJoyConfig.cpp -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConfig/vJoyConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConfig/vJoyConfig.h -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConfig/vJoyConfig.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConfig/vJoyConfig.rc -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConfig/vJoyConfig.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConfig/vJoyConfig.sln -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConfig/vJoyConfig.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConfig/vJoyConfig.vcxproj -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConfig/vJoyConfig.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConfig/vJoyConfig.vcxproj.filters -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyConfig/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyConfig/version.rc -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyDevice.cpp -------------------------------------------------------------------------------- /apps/vJoyConf/vJoyDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/vJoyDevice.h -------------------------------------------------------------------------------- /apps/vJoyConf/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyConf/version.rc -------------------------------------------------------------------------------- /apps/vJoyDemo/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyDemo/AssemblyInfo.cpp -------------------------------------------------------------------------------- /apps/vJoyDemo/Form1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyDemo/Form1.h -------------------------------------------------------------------------------- /apps/vJoyDemo/Form1.resX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyDemo/Form1.resX -------------------------------------------------------------------------------- /apps/vJoyDemo/FunkyLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyDemo/FunkyLibrary.dll -------------------------------------------------------------------------------- /apps/vJoyDemo/Joystick-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyDemo/Joystick-icon.ico -------------------------------------------------------------------------------- /apps/vJoyDemo/LBIndustrialCtrls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyDemo/LBIndustrialCtrls.dll -------------------------------------------------------------------------------- /apps/vJoyDemo/PPJIoctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyDemo/PPJIoctl.h -------------------------------------------------------------------------------- /apps/vJoyDemo/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyDemo/ReadMe.txt -------------------------------------------------------------------------------- /apps/vJoyDemo/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyDemo/app.rc -------------------------------------------------------------------------------- /apps/vJoyDemo/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyDemo/resource.h -------------------------------------------------------------------------------- /apps/vJoyDemo/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyDemo/stdafx.cpp -------------------------------------------------------------------------------- /apps/vJoyDemo/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyDemo/stdafx.h -------------------------------------------------------------------------------- /apps/vJoyDemo/vJoyClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyDemo/vJoyClient.cpp -------------------------------------------------------------------------------- /apps/vJoyDemo/vJoyDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyDemo/vJoyDemo.cpp -------------------------------------------------------------------------------- /apps/vJoyDemo/vJoyDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyDemo/vJoyDemo.sln -------------------------------------------------------------------------------- /apps/vJoyDemo/vJoyDemo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyDemo/vJoyDemo.vcproj -------------------------------------------------------------------------------- /apps/vJoyDemo/vjoyclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyDemo/vjoyclient.h -------------------------------------------------------------------------------- /apps/vJoyFeeder/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/AssemblyInfo.cpp -------------------------------------------------------------------------------- /apps/vJoyFeeder/Form1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/Form1.h -------------------------------------------------------------------------------- /apps/vJoyFeeder/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/Form1.resx -------------------------------------------------------------------------------- /apps/vJoyFeeder/FunkyLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/FunkyLibrary.dll -------------------------------------------------------------------------------- /apps/vJoyFeeder/Joystick-Feeder-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/Joystick-Feeder-icon.ico -------------------------------------------------------------------------------- /apps/vJoyFeeder/Joystick-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/Joystick-icon.ico -------------------------------------------------------------------------------- /apps/vJoyFeeder/LBIndustrialCtrls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/LBIndustrialCtrls.dll -------------------------------------------------------------------------------- /apps/vJoyFeeder/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/ReadMe.txt -------------------------------------------------------------------------------- /apps/vJoyFeeder/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/app.rc -------------------------------------------------------------------------------- /apps/vJoyFeeder/bldFeeder.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/bldFeeder.bat -------------------------------------------------------------------------------- /apps/vJoyFeeder/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/makefile -------------------------------------------------------------------------------- /apps/vJoyFeeder/makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/makefile.inc -------------------------------------------------------------------------------- /apps/vJoyFeeder/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/resource.h -------------------------------------------------------------------------------- /apps/vJoyFeeder/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/sources -------------------------------------------------------------------------------- /apps/vJoyFeeder/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/stdafx.cpp -------------------------------------------------------------------------------- /apps/vJoyFeeder/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/stdafx.h -------------------------------------------------------------------------------- /apps/vJoyFeeder/svn_version.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/svn_version.h.tmpl -------------------------------------------------------------------------------- /apps/vJoyFeeder/vJoyClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/vJoyClient.cpp -------------------------------------------------------------------------------- /apps/vJoyFeeder/vJoyFeeder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/vJoyFeeder.cpp -------------------------------------------------------------------------------- /apps/vJoyFeeder/vJoyFeeder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/vJoyFeeder.sln -------------------------------------------------------------------------------- /apps/vJoyFeeder/vJoyFeeder.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/vJoyFeeder.vcproj -------------------------------------------------------------------------------- /apps/vJoyFeeder/vJoyFeeder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/vJoyFeeder.vcxproj -------------------------------------------------------------------------------- /apps/vJoyFeeder/vJoyFeeder.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/vJoyFeeder.vcxproj.user -------------------------------------------------------------------------------- /apps/vJoyFeeder/vjoyclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyFeeder/vjoyclient.h -------------------------------------------------------------------------------- /apps/vJoyInstall/CmdLine/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/CmdLine/stdafx.cpp -------------------------------------------------------------------------------- /apps/vJoyInstall/CmdLine/vJoyInstall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/CmdLine/vJoyInstall.cpp -------------------------------------------------------------------------------- /apps/vJoyInstall/CmdLine/vJoyInstall.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/CmdLine/vJoyInstall.rc -------------------------------------------------------------------------------- /apps/vJoyInstall/CmdLine/vJoyInstall.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/CmdLine/vJoyInstall.vcxproj -------------------------------------------------------------------------------- /apps/vJoyInstall/CmdLine/vJoyInstall.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/CmdLine/vJoyInstall.vcxproj.filters -------------------------------------------------------------------------------- /apps/vJoyInstall/CmdLine/vJoyInstallx64.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/CmdLine/vJoyInstallx64.exe.manifest -------------------------------------------------------------------------------- /apps/vJoyInstall/CmdLine/vJoyInstallx86.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/CmdLine/vJoyInstallx86.exe.manifest -------------------------------------------------------------------------------- /apps/vJoyInstall/GTK/Install.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/GTK/Install.c -------------------------------------------------------------------------------- /apps/vJoyInstall/GTK/Install.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/GTK/Install.exe.manifest -------------------------------------------------------------------------------- /apps/vJoyInstall/GTK/Joystick-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/GTK/Joystick-icon.ico -------------------------------------------------------------------------------- /apps/vJoyInstall/GTK/Joystick-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/GTK/Joystick-icon.png -------------------------------------------------------------------------------- /apps/vJoyInstall/GTK/buildgtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/GTK/buildgtk -------------------------------------------------------------------------------- /apps/vJoyInstall/GTK/buildtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/GTK/buildtest -------------------------------------------------------------------------------- /apps/vJoyInstall/GTK/install.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/GTK/install.glade -------------------------------------------------------------------------------- /apps/vJoyInstall/GTK/install.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/GTK/install.h -------------------------------------------------------------------------------- /apps/vJoyInstall/GTK/install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/GTK/install.ico -------------------------------------------------------------------------------- /apps/vJoyInstall/GTK/install.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/GTK/install.rc -------------------------------------------------------------------------------- /apps/vJoyInstall/GTK/makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/GTK/makefile.inc -------------------------------------------------------------------------------- /apps/vJoyInstall/GTK/setup_x64.SED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/GTK/setup_x64.SED -------------------------------------------------------------------------------- /apps/vJoyInstall/GTK/setup_x86.SED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/GTK/setup_x86.SED -------------------------------------------------------------------------------- /apps/vJoyInstall/GTK/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/GTK/sources -------------------------------------------------------------------------------- /apps/vJoyInstall/GTK/svn_version.h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/GTK/svn_version.h.tmpl -------------------------------------------------------------------------------- /apps/vJoyInstall/GTK/vJoyInstall.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/GTK/vJoyInstall.def -------------------------------------------------------------------------------- /apps/vJoyInstall/GTK/vJoyInstall.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/GTK/vJoyInstall.rc -------------------------------------------------------------------------------- /apps/vJoyInstall/GTK/vJoyInstall.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/GTK/vJoyInstall.vcxproj -------------------------------------------------------------------------------- /apps/vJoyInstall/GTK/wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/GTK/wrapper.cpp -------------------------------------------------------------------------------- /apps/vJoyInstall/GTK/wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/GTK/wrapper.h -------------------------------------------------------------------------------- /apps/vJoyInstall/Joystick-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/Joystick-icon.ico -------------------------------------------------------------------------------- /apps/vJoyInstall/Joystick-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/Joystick-icon.png -------------------------------------------------------------------------------- /apps/vJoyInstall/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/dirs -------------------------------------------------------------------------------- /apps/vJoyInstall/install.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/install.h -------------------------------------------------------------------------------- /apps/vJoyInstall/install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/install.ico -------------------------------------------------------------------------------- /apps/vJoyInstall/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/stdafx.h -------------------------------------------------------------------------------- /apps/vJoyInstall/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/targetver.h -------------------------------------------------------------------------------- /apps/vJoyInstall/vJoyInstall.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/vJoyInstall.def -------------------------------------------------------------------------------- /apps/vJoyInstall/vJoyInstall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/vJoyInstall.h -------------------------------------------------------------------------------- /apps/vJoyInstall/vJoyInstall.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/vJoyInstall.rc -------------------------------------------------------------------------------- /apps/vJoyInstall/vJoyInstall.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/vJoyInstall.vcxproj -------------------------------------------------------------------------------- /apps/vJoyInstall/vJoyInstall.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/vJoyInstall.vcxproj.filters -------------------------------------------------------------------------------- /apps/vJoyInstall/vJoyInstallLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/vJoyInstallLib.cpp -------------------------------------------------------------------------------- /apps/vJoyInstall/wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/wrapper.cpp -------------------------------------------------------------------------------- /apps/vJoyInstall/wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyInstall/wrapper.h -------------------------------------------------------------------------------- /apps/vJoyList/MyMFCListCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyList/MyMFCListCtrl.cpp -------------------------------------------------------------------------------- /apps/vJoyList/MyMFCListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyList/MyMFCListCtrl.h -------------------------------------------------------------------------------- /apps/vJoyList/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyList/ReadMe.txt -------------------------------------------------------------------------------- /apps/vJoyList/res/Joystick-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyList/res/Joystick-icon.ico -------------------------------------------------------------------------------- /apps/vJoyList/res/vJoyList.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyList/res/vJoyList.ico -------------------------------------------------------------------------------- /apps/vJoyList/res/vJoyList.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyList/res/vJoyList.rc2 -------------------------------------------------------------------------------- /apps/vJoyList/res/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyList/res/version.rc -------------------------------------------------------------------------------- /apps/vJoyList/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyList/resource.h -------------------------------------------------------------------------------- /apps/vJoyList/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyList/stdafx.cpp -------------------------------------------------------------------------------- /apps/vJoyList/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyList/stdafx.h -------------------------------------------------------------------------------- /apps/vJoyList/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyList/targetver.h -------------------------------------------------------------------------------- /apps/vJoyList/vJoyList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyList/vJoyList.cpp -------------------------------------------------------------------------------- /apps/vJoyList/vJoyList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyList/vJoyList.h -------------------------------------------------------------------------------- /apps/vJoyList/vJoyList.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyList/vJoyList.rc -------------------------------------------------------------------------------- /apps/vJoyList/vJoyList.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyList/vJoyList.vcxproj -------------------------------------------------------------------------------- /apps/vJoyList/vJoyList.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyList/vJoyList.vcxproj.filters -------------------------------------------------------------------------------- /apps/vJoyList/vJoyListDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyList/vJoyListDlg.cpp -------------------------------------------------------------------------------- /apps/vJoyList/vJoyListDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/apps/vJoyList/vJoyListDlg.h -------------------------------------------------------------------------------- /docs/Flexible vJoy descriptor.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/docs/Flexible vJoy descriptor.odt -------------------------------------------------------------------------------- /docs/How to prevent more than one vJoy device.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/docs/How to prevent more than one vJoy device.odt -------------------------------------------------------------------------------- /docs/Inno_Setup_Installer.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/docs/Inno_Setup_Installer.odt -------------------------------------------------------------------------------- /docs/OverView.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/docs/OverView.odt -------------------------------------------------------------------------------- /docs/Position Datapath.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/docs/Position Datapath.odt -------------------------------------------------------------------------------- /docs/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/docs/ReadMe.md -------------------------------------------------------------------------------- /docs/hid1_11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/docs/hid1_11.pdf -------------------------------------------------------------------------------- /docs/hut1_12v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/docs/hut1_12v2.pdf -------------------------------------------------------------------------------- /docs/pid1_01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/docs/pid1_01.pdf -------------------------------------------------------------------------------- /docs/readme/Driver_store_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/docs/readme/Driver_store_2.png -------------------------------------------------------------------------------- /docs/vGenInterface.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/docs/vGenInterface.odt -------------------------------------------------------------------------------- /docs/vJoy 1.0.3 - configurable driver.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/docs/vJoy 1.0.3 - configurable driver.odt -------------------------------------------------------------------------------- /docs/vJoy215RN01.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/docs/vJoy215RN01.odt -------------------------------------------------------------------------------- /docs/vJoyInterface.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/docs/vJoyInterface.odt -------------------------------------------------------------------------------- /driver/Package/Package.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/Package/Package.vcxproj -------------------------------------------------------------------------------- /driver/Package/Package.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/Package/Package.vcxproj.filters -------------------------------------------------------------------------------- /driver/Package/Package.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/Package/Package.vcxproj.user -------------------------------------------------------------------------------- /driver/hidmapper/hidkmdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/hidmapper/hidkmdf.c -------------------------------------------------------------------------------- /driver/hidmapper/hidkmdf.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/hidmapper/hidkmdf.rc -------------------------------------------------------------------------------- /driver/hidmapper/hidkmdf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/hidmapper/hidkmdf.vcxproj -------------------------------------------------------------------------------- /driver/hidmapper/hidkmdf.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/hidmapper/hidkmdf.vcxproj.user -------------------------------------------------------------------------------- /driver/hidmapper/hidkmdf32.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/hidmapper/hidkmdf32.sys -------------------------------------------------------------------------------- /driver/hidmapper/hidkmdf64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/hidmapper/hidkmdf64.sys -------------------------------------------------------------------------------- /driver/hidmapper/makefile.inc.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/hidmapper/makefile.inc.props -------------------------------------------------------------------------------- /driver/hidmapper/sources.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/hidmapper/sources.props -------------------------------------------------------------------------------- /driver/sys/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/sys/driver.c -------------------------------------------------------------------------------- /driver/sys/errcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/sys/errcodes.h -------------------------------------------------------------------------------- /driver/sys/errcodes.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/sys/errcodes.mc -------------------------------------------------------------------------------- /driver/sys/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/sys/hid.c -------------------------------------------------------------------------------- /driver/sys/hidReportDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/sys/hidReportDesc.h -------------------------------------------------------------------------------- /driver/sys/hidReportDescSingle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/sys/hidReportDescSingle.h -------------------------------------------------------------------------------- /driver/sys/rawpdo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/sys/rawpdo.c -------------------------------------------------------------------------------- /driver/sys/rawpdo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/sys/rawpdo.h -------------------------------------------------------------------------------- /driver/sys/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/sys/trace.h -------------------------------------------------------------------------------- /driver/sys/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/sys/usb.c -------------------------------------------------------------------------------- /driver/sys/vJoy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/sys/vJoy.vcxproj -------------------------------------------------------------------------------- /driver/sys/vJoy.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/sys/vJoy.vcxproj.filters -------------------------------------------------------------------------------- /driver/sys/vJoy.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/sys/vJoy.vcxproj.user -------------------------------------------------------------------------------- /driver/sys/vjoy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/sys/vjoy.h -------------------------------------------------------------------------------- /driver/sys/vjoy.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/sys/vjoy.inx -------------------------------------------------------------------------------- /driver/sys/vjoy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/driver/sys/vjoy.rc -------------------------------------------------------------------------------- /inc/PPJIoctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/inc/PPJIoctl.h -------------------------------------------------------------------------------- /inc/XOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/inc/XOutput.h -------------------------------------------------------------------------------- /inc/gen-versioninfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/inc/gen-versioninfo.h -------------------------------------------------------------------------------- /inc/public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/inc/public.h -------------------------------------------------------------------------------- /inc/wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/inc/wrapper.h -------------------------------------------------------------------------------- /install/AddvJoyFFB.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/install/AddvJoyFFB.reg -------------------------------------------------------------------------------- /install/Joystick-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/install/Joystick-icon.ico -------------------------------------------------------------------------------- /install/RemvJoyFFB.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/install/RemvJoyFFB.reg -------------------------------------------------------------------------------- /install/SeTestCert.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/install/SeTestCert.cer -------------------------------------------------------------------------------- /install/SignDriver.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/install/SignDriver.bat -------------------------------------------------------------------------------- /install/TraceView.ini: -------------------------------------------------------------------------------- 1 | [TRACEVIEW$DEFAULT] 2 | DefaultDirectory=A:\WinDDK\7600.16385.1\src\Dev\hidusbfx2\sys\objchk_win7_x86\i386\ 3 | -------------------------------------------------------------------------------- /install/devcon.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/install/devcon.exe -------------------------------------------------------------------------------- /install/driver.tmh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/install/driver.tmh -------------------------------------------------------------------------------- /install/driver_signing_notice.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/install/driver_signing_notice.bmp -------------------------------------------------------------------------------- /install/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/install/install.bat -------------------------------------------------------------------------------- /install/install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/install/install.ico -------------------------------------------------------------------------------- /install/reinstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/install/reinstall.bat -------------------------------------------------------------------------------- /install/remove.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/install/remove.bat -------------------------------------------------------------------------------- /install/vJoyInstallerMerged.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/install/vJoyInstallerMerged.iss -------------------------------------------------------------------------------- /install/vJoyInstallerSigned.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/install/vJoyInstallerSigned.iss -------------------------------------------------------------------------------- /install/vJoyInstallerSigned_Brunner.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/install/vJoyInstallerSigned_Brunner.iss -------------------------------------------------------------------------------- /lib/objfre_wlh_amd64/amd64/vJoyInstall.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/lib/objfre_wlh_amd64/amd64/vJoyInstall.dll -------------------------------------------------------------------------------- /lib/objfre_wlh_amd64/amd64/vJoyInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/lib/objfre_wlh_amd64/amd64/vJoyInterface.dll -------------------------------------------------------------------------------- /lib/objfre_wlh_amd64/amd64/vJoyInterface.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/lib/objfre_wlh_amd64/amd64/vJoyInterface.lib -------------------------------------------------------------------------------- /lib/objfre_wxp_x86/i386/vJoyInstall.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/lib/objfre_wxp_x86/i386/vJoyInstall.dll -------------------------------------------------------------------------------- /lib/objfre_wxp_x86/i386/vJoyInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/lib/objfre_wxp_x86/i386/vJoyInterface.dll -------------------------------------------------------------------------------- /lib/objfre_wxp_x86/i386/vJoyInterface.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/lib/objfre_wxp_x86/i386/vJoyInterface.lib -------------------------------------------------------------------------------- /vJoyAll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/vJoyAll.sln -------------------------------------------------------------------------------- /vJoyApps.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/vJoyApps.sln -------------------------------------------------------------------------------- /vJoyDriver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunnerInnovation/vJoy/HEAD/vJoyDriver.sln --------------------------------------------------------------------------------