From 51683b1aedcbe9ecb6cf63938d6049ac36a56b10 Mon Sep 17 00:00:00 2001 From: Luke Dunstan Date: Thu, 5 Jun 2003 10:19:08 +0000 Subject: * include/winuser.h (WNDCLASS[AW], WNDCLASSEX[AW]): Change type of hInstance members to HINSTANCE. Thanks to: Brenden T. --- winsup/w32api/include/winuser.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'winsup/w32api/include') diff --git a/winsup/w32api/include/winuser.h b/winsup/w32api/include/winuser.h index 6f34430..f1ddd8d 100644 --- a/winsup/w32api/include/winuser.h +++ b/winsup/w32api/include/winuser.h @@ -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; -- cgit v1.1