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 | |
parent | 6930d6cdd0b8c7140911a6149c4c22c721f5c83b (diff) | |
download | newlib-d905b7d0cead4dc75ea6155bd18702b791ac2b50.zip newlib-d905b7d0cead4dc75ea6155bd18702b791ac2b50.tar.gz newlib-d905b7d0cead4dc75ea6155bd18702b791ac2b50.tar.bz2 |
2002-10-04 "KJK::Hyperion" <noog@libero.it>
*include/windef.h (WPARAM): Update typedef.
(LPARAM): Ditto.
(LRESULT): Ditto.
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/w32api/ChangeLog | 6 | ||||
-rw-r--r-- | winsup/w32api/include/windef.h | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 18ce4c2..023ac62 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,5 +1,11 @@ 2002-10-04 "KJK::Hyperion" <noog@libero.it> + *include/windef.h (WPARAM): Update typedef. + (LPARAM): Ditto. + (LRESULT): Ditto. + +2002-10-04 "KJK::Hyperion" <noog@libero.it> + * include/shlobj.h (CSIDL_*): Add defines. 2002-09-24 Danny Smith <dannysmith@users.sourceforge.net> diff --git a/winsup/w32api/include/windef.h b/winsup/w32api/include/windef.h index 2f703bd..ffc09de 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 |