From 8524adc662a54ae942d2fbbc77fb0475d256efb5 Mon Sep 17 00:00:00 2001 From: kichik Date: Fri, 28 Apr 2006 13:25:48 +0000 Subject: [PATCH] better HANDLE definition - pointer can be more than 32-bit git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4662 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/Platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Platform.h b/Source/Platform.h index 49853f31..ed3223c6 100644 --- a/Source/Platform.h +++ b/Source/Platform.h @@ -37,7 +37,7 @@ typedef unsigned short WCHAR, *PWCHAR, *LPWCH, *PWCH, *NWPSTR, *LPWSTR, *PWSTR; typedef const unsigned short *LPCWCH, *PCWCH, *LPCWSTR, *PCWSTR; typedef unsigned int UINT_PTR; // basic stuff -typedef unsigned long HANDLE; +typedef void * HANDLE; typedef unsigned long HKEY; // some gdi typedef unsigned long COLORREF;