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

oldstable
Dmitry Timoshkov 2003-01-10 01:45:13 +00:00 committed by Alexandre Julliard
parent 2692308a79
commit 682698a498
1 changed files with 7 additions and 3 deletions

View File

@ -197,10 +197,14 @@ typedef double DATE;
#endif /* __WINESRC__ */
/* Polymorphic types */
typedef UINT_PTR WPARAM;
typedef LONG_PTR LPARAM;
typedef LONG_PTR LRESULT;
/* Integer types */
typedef UINT WPARAM;
typedef LONG LPARAM;
typedef LONG LRESULT;
typedef WORD ATOM;
typedef WORD CATCHBUF[9];
typedef WORD *LPCATCHBUF;