* 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:
parent
f51e42acc8
commit
51683b1aed
|
@ -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>
|
2003-06-05 Bart Oldeman <bartoldeman@users.sourceforge.net>
|
||||||
|
|
||||||
* include/lmaccess.h (UF_MNS_LOGON_ACCOUNT): Add define.
|
* include/lmaccess.h (UF_MNS_LOGON_ACCOUNT): Add define.
|
||||||
|
|
|
@ -2208,7 +2208,7 @@ typedef struct _WNDCLASSA {
|
||||||
WNDPROC lpfnWndProc;
|
WNDPROC lpfnWndProc;
|
||||||
int cbClsExtra;
|
int cbClsExtra;
|
||||||
int cbWndExtra;
|
int cbWndExtra;
|
||||||
HANDLE hInstance;
|
HINSTANCE hInstance;
|
||||||
HICON hIcon;
|
HICON hIcon;
|
||||||
HCURSOR hCursor;
|
HCURSOR hCursor;
|
||||||
HBRUSH hbrBackground;
|
HBRUSH hbrBackground;
|
||||||
|
@ -2220,7 +2220,7 @@ typedef struct _WNDCLASSW {
|
||||||
WNDPROC lpfnWndProc;
|
WNDPROC lpfnWndProc;
|
||||||
int cbClsExtra;
|
int cbClsExtra;
|
||||||
int cbWndExtra;
|
int cbWndExtra;
|
||||||
HANDLE hInstance;
|
HINSTANCE hInstance;
|
||||||
HICON hIcon;
|
HICON hIcon;
|
||||||
HCURSOR hCursor;
|
HCURSOR hCursor;
|
||||||
HBRUSH hbrBackground;
|
HBRUSH hbrBackground;
|
||||||
|
@ -2233,7 +2233,7 @@ typedef struct _WNDCLASSEXA {
|
||||||
WNDPROC lpfnWndProc;
|
WNDPROC lpfnWndProc;
|
||||||
int cbClsExtra;
|
int cbClsExtra;
|
||||||
int cbWndExtra;
|
int cbWndExtra;
|
||||||
HANDLE hInstance;
|
HINSTANCE hInstance;
|
||||||
HICON hIcon;
|
HICON hIcon;
|
||||||
HCURSOR hCursor;
|
HCURSOR hCursor;
|
||||||
HBRUSH hbrBackground;
|
HBRUSH hbrBackground;
|
||||||
|
@ -2247,7 +2247,7 @@ typedef struct _WNDCLASSEXW {
|
||||||
WNDPROC lpfnWndProc;
|
WNDPROC lpfnWndProc;
|
||||||
int cbClsExtra;
|
int cbClsExtra;
|
||||||
int cbWndExtra;
|
int cbWndExtra;
|
||||||
HANDLE hInstance;
|
HINSTANCE hInstance;
|
||||||
HICON hIcon;
|
HICON hIcon;
|
||||||
HCURSOR hCursor;
|
HCURSOR hCursor;
|
||||||
HBRUSH hbrBackground;
|
HBRUSH hbrBackground;
|
||||||
|
|
Loading…
Reference in New Issue