Fixed accelerator handling. ACCEL16 used internal, ACCEL32 for Win32
API, PE_ACCEL for PE Accelerators. See documentation/accelerators.
diff --git a/include/winuser.h b/include/winuser.h
index 71cabc0..8d7fd49 100644
--- a/include/winuser.h
+++ b/include/winuser.h
@@ -119,6 +119,16 @@
HBITMAP32 hbmColor;
} ICONINFO,*LPICONINFO;
+/* this is the 6 byte accel struct used in Win32 when presented to the user */
+typedef struct
+{
+ BYTE fVirt;
+ BYTE pad0;
+ WORD key;
+ WORD cmd;
+} ACCEL32, *LPACCEL32;
+
+/* this is the 8 byte accel struct used in Win32 resources (internal only) */
typedef struct
{
BYTE fVirt;
@@ -126,7 +136,7 @@
WORD key;
WORD cmd;
WORD pad1;
-} ACCEL32, *LPACCEL32;
+} PE_ACCEL, *LPPE_ACCEL;
DECL_WINELIB_TYPE(ACCEL)
DECL_WINELIB_TYPE(LPACCEL)