Change types of WPARAM, LPARAM and LRESULT according to MS SDK definitions.
This commit is contained in:
parent
2692308a79
commit
682698a498
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue