Commit e1d6e3b2 authored by Vitaliy Margolen's avatar Vitaliy Margolen Committed by Alexandre Julliard

dinput: Fix definitions to match PSDK.

parent 75c71b4b
......@@ -224,7 +224,7 @@ void _dump_diactionformatA(LPDIACTIONFORMATA lpdiActionFormat) {
for (i=0;i<lpdiActionFormat->dwNumActions;i++) {
FIXME("diaf.rgoAction[%u]:\n", i);
FIXME("\tuAppData=%lx\n", lpdiActionFormat->rgoAction[i].uAppData);
FIXME("\tdwSemantics=%x\n", lpdiActionFormat->rgoAction[i].dwSemantics);
FIXME("\tdwSemantic=%x\n", lpdiActionFormat->rgoAction[i].dwSemantic);
FIXME("\tdwFlags=%x\n", lpdiActionFormat->rgoAction[i].dwFlags);
FIXME("\tszActionName=%s\n", debugstr_a(lpdiActionFormat->rgoAction[i].u.lptszActionName));
FIXME("\tguidInstance=%s\n", debugstr_guid(&lpdiActionFormat->rgoAction[i].guidInstance));
......
......@@ -1106,7 +1106,7 @@ typedef BOOL (CALLBACK *LPDIENUMEFFECTSINFILECALLBACK)(LPCDIFILEEFFECT , LPVOID)
/* DInput 8 structures and types */
typedef struct _DIACTIONA {
UINT_PTR uAppData;
DWORD dwSemantics;
DWORD dwSemantic;
DWORD dwFlags;
union {
LPCSTR lptszActionName;
......@@ -1120,7 +1120,7 @@ typedef const DIACTIONA *LPCDIACTIONA;
typedef struct _DIACTIONW {
UINT_PTR uAppData;
DWORD dwSemantics;
DWORD dwSemantic;
DWORD dwFlags;
union {
LPCWSTR lptszActionName;
......
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