dinput: Rename wReserved to wReportId in DIDEVICEOBJECTINSTANCE.
Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
5cf67f00d0
commit
2d629228dd
|
@ -92,7 +92,7 @@ static void dideviceobjectinstance_wtoa( const DIDEVICEOBJECTINSTANCEW *in, DIDE
|
||||||
out->wUsage = in->wUsage;
|
out->wUsage = in->wUsage;
|
||||||
out->dwDimension = in->dwDimension;
|
out->dwDimension = in->dwDimension;
|
||||||
out->wExponent = in->wExponent;
|
out->wExponent = in->wExponent;
|
||||||
out->wReserved = in->wReserved;
|
out->wReportId = in->wReportId;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void dideviceinstance_wtoa( const DIDEVICEINSTANCEW *in, DIDEVICEINSTANCEA *out )
|
static void dideviceinstance_wtoa( const DIDEVICEINSTANCEW *in, DIDEVICEINSTANCEA *out )
|
||||||
|
|
|
@ -358,7 +358,7 @@ typedef struct DIDEVICEOBJECTINSTANCEA {
|
||||||
WORD wUsage;
|
WORD wUsage;
|
||||||
DWORD dwDimension;
|
DWORD dwDimension;
|
||||||
WORD wExponent;
|
WORD wExponent;
|
||||||
WORD wReserved;
|
WORD wReportId;
|
||||||
} DIDEVICEOBJECTINSTANCEA, *LPDIDEVICEOBJECTINSTANCEA;
|
} DIDEVICEOBJECTINSTANCEA, *LPDIDEVICEOBJECTINSTANCEA;
|
||||||
typedef const DIDEVICEOBJECTINSTANCEA *LPCDIDEVICEOBJECTINSTANCEA;
|
typedef const DIDEVICEOBJECTINSTANCEA *LPCDIDEVICEOBJECTINSTANCEA;
|
||||||
|
|
||||||
|
@ -377,7 +377,7 @@ typedef struct DIDEVICEOBJECTINSTANCEW {
|
||||||
WORD wUsage;
|
WORD wUsage;
|
||||||
DWORD dwDimension;
|
DWORD dwDimension;
|
||||||
WORD wExponent;
|
WORD wExponent;
|
||||||
WORD wReserved;
|
WORD wReportId;
|
||||||
} DIDEVICEOBJECTINSTANCEW, *LPDIDEVICEOBJECTINSTANCEW;
|
} DIDEVICEOBJECTINSTANCEW, *LPDIDEVICEOBJECTINSTANCEW;
|
||||||
typedef const DIDEVICEOBJECTINSTANCEW *LPCDIDEVICEOBJECTINSTANCEW;
|
typedef const DIDEVICEOBJECTINSTANCEW *LPCDIDEVICEOBJECTINSTANCEW;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue