summaryrefslogtreecommitdiffstats
path: root/winsup/w32api/include/winnt.h
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2003-07-12 09:26:43 +0000
committerDanny Smith <dannysmith@users.sourceforge.net>2003-07-12 09:26:43 +0000
commita6674ee61b8308ae40a4feef821a6bf6e442ac6c (patch)
tree60df1c139259b5f9b4c701182521435e5e903ebc /winsup/w32api/include/winnt.h
parent57552a73783b9f0f6d336d3f29873b2f7a8ab472 (diff)
downloadcygnal-a6674ee61b8308ae40a4feef821a6bf6e442ac6c.tar.gz
cygnal-a6674ee61b8308ae40a4feef821a6bf6e442ac6c.tar.bz2
cygnal-a6674ee61b8308ae40a4feef821a6bf6e442ac6c.zip
* include/winnt.h (PVOID): Move to before HANDLE typedef.
* include/winuser.h (mouse_event): Correct type of fifth param, Thanks to: Andrew Jones <guln at users dot sourceforge dot net>
Diffstat (limited to 'winsup/w32api/include/winnt.h')
-rw-r--r--winsup/w32api/include/winnt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/w32api/include/winnt.h b/winsup/w32api/include/winnt.h
index 93a476487..1b3262afe 100644
--- a/winsup/w32api/include/winnt.h
+++ b/winsup/w32api/include/winnt.h
@@ -116,7 +116,6 @@ typedef const TCHAR *LPCTSTR;
#define TEXT(q) __TEXT(q)
typedef SHORT *PSHORT;
typedef LONG *PLONG;
-typedef HANDLE *PHANDLE,*LPHANDLE;
#ifdef STRICT
typedef void *HANDLE;
#define DECLARE_HANDLE(n) typedef struct n##__{int i;}*n
@@ -124,6 +123,7 @@ typedef void *HANDLE;
typedef PVOID HANDLE;
#define DECLARE_HANDLE(n) typedef HANDLE n
#endif
+typedef HANDLE *PHANDLE,*LPHANDLE;
typedef DWORD LCID;
typedef PDWORD PLCID;
typedef WORD LANGID;