diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2002-10-04 04:25:00 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2002-10-04 04:25:00 +0000 |
commit | d905b7d0cead4dc75ea6155bd18702b791ac2b50 (patch) | |
tree | 595ce4639d6cc0fb9aaf90110fcca48a1c089193 /winsup/w32api/include/windef.h | |
parent | 6930d6cdd0b8c7140911a6149c4c22c721f5c83b (diff) | |
download | cygnal-d905b7d0cead4dc75ea6155bd18702b791ac2b50.tar.gz cygnal-d905b7d0cead4dc75ea6155bd18702b791ac2b50.tar.bz2 cygnal-d905b7d0cead4dc75ea6155bd18702b791ac2b50.zip |
2002-10-04 "KJK::Hyperion" <noog@libero.it>
*include/windef.h (WPARAM): Update typedef.
(LPARAM): Ditto.
(LRESULT): Ditto.
Diffstat (limited to 'winsup/w32api/include/windef.h')
-rw-r--r-- | winsup/w32api/include/windef.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/w32api/include/windef.h b/winsup/w32api/include/windef.h index 2f703bdc5..ffc09debf 100644 --- a/winsup/w32api/include/windef.h +++ b/winsup/w32api/include/windef.h @@ -245,9 +245,9 @@ typedef unsigned int UINT,*PUINT,*LPUINT; #include <winnt.h> -typedef UINT WPARAM; -typedef LONG LPARAM; -typedef LONG LRESULT; +typedef UINT_PTR WPARAM; +typedef LONG_PTR LPARAM; +typedef LONG_PTR LRESULT; #ifndef _HRESULT_DEFINED typedef LONG HRESULT; #define _HRESULT_DEFINED |