Commit 2d629228 authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

dinput: Rename wReserved to wReportId in DIDEVICEOBJECTINSTANCE.

parent 5cf67f00
......@@ -92,7 +92,7 @@ static void dideviceobjectinstance_wtoa( const DIDEVICEOBJECTINSTANCEW *in, DIDE
out->wUsage = in->wUsage;
out->dwDimension = in->dwDimension;
out->wExponent = in->wExponent;
out->wReserved = in->wReserved;
out->wReportId = in->wReportId;
}
static void dideviceinstance_wtoa( const DIDEVICEINSTANCEW *in, DIDEVICEINSTANCEA *out )
......
......@@ -358,7 +358,7 @@ typedef struct DIDEVICEOBJECTINSTANCEA {
WORD wUsage;
DWORD dwDimension;
WORD wExponent;
WORD wReserved;
WORD wReportId;
} DIDEVICEOBJECTINSTANCEA, *LPDIDEVICEOBJECTINSTANCEA;
typedef const DIDEVICEOBJECTINSTANCEA *LPCDIDEVICEOBJECTINSTANCEA;
......@@ -377,7 +377,7 @@ typedef struct DIDEVICEOBJECTINSTANCEW {
WORD wUsage;
DWORD dwDimension;
WORD wExponent;
WORD wReserved;
WORD wReportId;
} DIDEVICEOBJECTINSTANCEW, *LPDIDEVICEOBJECTINSTANCEW;
typedef const DIDEVICEOBJECTINSTANCEW *LPCDIDEVICEOBJECTINSTANCEW;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment