Free Download World of Joysticks XInput Emulator - Emulate an XInput gamepad using any DirectInput device and play games that only offer support for. Download x360ce for free. Wondering How to Make the Best Sales Pitch for Microsoft Azure? A lot of resellers have a tough time deciding which provider has the best cloud platform to meet their clients’ needs. SharpDX GitHub Repository. Contribute to sharpdx/SharpDX development by creating an account on GitHub.
After moving from VS2010 to VS2012, Xinput has stopped working on Windows 7.
I get the following missing dlls:
Note that everything works as expected on Windows 8.
How do I resolve this issue?
I'm using VS 2012 on Windows 8, but I got the same problem when one of my team members tried to run my program on a Win7 PC. Managed to solve it by changing xinput.lib; to XINPUT9_1_0.LIB; in Poject Properties->Linker->Input->Additional Dependencies
For more info on the Xinput versions check out http://msdn.microsoft.com/en-us/library/windows/desktop/hh405051(v=vs.85).aspx
I got the same thing with XInput
, moving a project from VS2010 to 2012 on Windows 7. Seems VS2012 comes with a new 'XInput.h' which expects XInput1_4.dll.
All I had to do to fix it was change my dependency from XInput.lib to XInput9_1_0.lib (that's the old version).
Uwe KeimI managed to solve this issue in the following way:
In VS2012, directx libraries are included on-disk. This is a new version of the library that only seems to work on Windows 8, and there does not seem to be a redistributable at this point.
As a workaround, you can link to the old sdk
1) Install the old direct x sdk2) Under Additional Library Dependencies: $(DXSDK_DIR)Libx86;3) Under Additional Dependencies: xinput.lib;
Hi Mikey,
Based on the issue description, you’re receiving XINPUT1_3.dll missing error message whenever you try to run Dolphin Emulator.
Mikey, Please do not worry. We will help you fix this issue.
Let’s try these steps and check if it helps.
Method 1:
Download and Run the DirectX End User Runtime installer and check if it helps.
DirectX End-User Runtime Web Installer
http://www.microsoft.com/en-us/download/details.aspx?id=35
If the issue persists, then run the system file checker scan to fix the DLL issues.
Method 2: System File Checker Scan
a.Click on Start and type CMD.exe in the startup search box.
b.Right click on CMD.exe and then select Run as Administrator.
c.Type the following command in the command prompt and press enter.
Sfc/scannow
Refer:
How to use the System File Checker tool to troubleshoot missing or corrupted system files on Windows Vista or on Windows 7
http://support.microsoft.com/kb/929833
Method 3: Update the Display adapters.
a.Click on Start and then type devmgmt.msc in the startup search box and press enter.
b.In the device manager, browse display adapters, right click on the adapter you see and click on Update Driver Software.
Reference:
Update a driver for hardware that isn't working properly
You may go through the following website to know more about DirectX related issues.
Diagnosing basic problems with DirectX
http://windows.microsoft.com/en-US/windows7/Diagnosing-basic-problems-with-DirectX
Hope this information is helpful. If any issues, please reply. We’re here to help.