summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSam Lantinga <slouken@libsdl.org>2015-11-16 21:20:38 -0800
committerSam Lantinga <slouken@libsdl.org>2015-11-16 21:20:38 -0800
commit08ea8e7386b6c23d9d4590a85a88b63ad5c7000b (patch)
tree4209d7c74df8a3ca5e07927757f39c4c3e992ecd /src
parent9f1946f893646485909017c7f1bc0ad68952f261 (diff)
downloadsdl-08ea8e7386b6c23d9d4590a85a88b63ad5c7000b.tar.gz
Fixed bug 3168 - xinput build failure with dxsdk
Ozkan Sezer Yes, the annotations can actually be removed. They are used only by MSVC and aren't vital.
Diffstat (limited to 'src')
-rw-r--r--src/core/windows/SDL_xinput.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/windows/SDL_xinput.h b/src/core/windows/SDL_xinput.h
index e649c5587..c22b1ebe7 100644
--- a/src/core/windows/SDL_xinput.h
+++ b/src/core/windows/SDL_xinput.h
@@ -146,9 +146,9 @@ typedef DWORD (WINAPI *XInputGetCapabilities_t)
typedef DWORD (WINAPI *XInputGetBatteryInformation_t)
(
- _In_ DWORD dwUserIndex,
- _In_ BYTE devType,
- _Out_ XINPUT_BATTERY_INFORMATION_EX *pBatteryInformation
+ DWORD dwUserIndex,
+ BYTE devType,
+ XINPUT_BATTERY_INFORMATION_EX *pBatteryInformation
);
extern int WIN_LoadXInputDLL(void);