* include/winuser.h (WNDCLASS[AW], WNDCLASSEX[AW]): Change type of

hInstance members to HINSTANCE.
	Thanks to: Brenden T. <brenden@rcsis.com>
This commit is contained in:
Luke Dunstan 2003-06-05 10:19:08 +00:00
parent f51e42acc8
commit 51683b1aed
2 changed files with 10 additions and 4 deletions

View file

@ -1,3 +1,9 @@
2003-06-05 Luke Dunstan <infidel@users.sourceforge.net>
* include/winuser.h (WNDCLASS[AW], WNDCLASSEX[AW]): Change type of
hInstance members to HINSTANCE.
Thanks to: Brenden T. <brenden@rcsis.com>
2003-06-05 Bart Oldeman <bartoldeman@users.sourceforge.net>
* include/lmaccess.h (UF_MNS_LOGON_ACCOUNT): Add define.

View file

@ -2208,7 +2208,7 @@ typedef struct _WNDCLASSA {
WNDPROC lpfnWndProc;
int cbClsExtra;
int cbWndExtra;
HANDLE hInstance;
HINSTANCE hInstance;
HICON hIcon;
HCURSOR hCursor;
HBRUSH hbrBackground;
@ -2220,7 +2220,7 @@ typedef struct _WNDCLASSW {
WNDPROC lpfnWndProc;
int cbClsExtra;
int cbWndExtra;
HANDLE hInstance;
HINSTANCE hInstance;
HICON hIcon;
HCURSOR hCursor;
HBRUSH hbrBackground;
@ -2233,7 +2233,7 @@ typedef struct _WNDCLASSEXA {
WNDPROC lpfnWndProc;
int cbClsExtra;
int cbWndExtra;
HANDLE hInstance;
HINSTANCE hInstance;
HICON hIcon;
HCURSOR hCursor;
HBRUSH hbrBackground;
@ -2247,7 +2247,7 @@ typedef struct _WNDCLASSEXW {
WNDPROC lpfnWndProc;
int cbClsExtra;
int cbWndExtra;
HANDLE hInstance;
HINSTANCE hInstance;
HICON hIcon;
HCURSOR hCursor;
HBRUSH hbrBackground;