Commit 682698a4 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

Change types of WPARAM, LPARAM and LRESULT according to MS SDK definitions.

parent 2692308a
...@@ -197,10 +197,14 @@ typedef double DATE; ...@@ -197,10 +197,14 @@ typedef double DATE;
#endif /* __WINESRC__ */ #endif /* __WINESRC__ */
/* Polymorphic types */
typedef UINT_PTR WPARAM;
typedef LONG_PTR LPARAM;
typedef LONG_PTR LRESULT;
/* Integer types */ /* Integer types */
typedef UINT WPARAM;
typedef LONG LPARAM;
typedef LONG LRESULT;
typedef WORD ATOM; typedef WORD ATOM;
typedef WORD CATCHBUF[9]; typedef WORD CATCHBUF[9];
typedef WORD *LPCATCHBUF; typedef WORD *LPCATCHBUF;
......
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