From 13319345b0662c224f043c5a7d98d63af56dc766 Mon Sep 17 00:00:00 2001 From: kichik Date: Tue, 6 Sep 2005 16:57:58 +0000 Subject: [PATCH] fixed mingw compile errors (missing SHACF_FILESYSTEM) git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4242 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/Platform.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Source/Platform.h b/Source/Platform.h index f0351642..ea611863 100644 --- a/Source/Platform.h +++ b/Source/Platform.h @@ -335,6 +335,14 @@ typedef WORD LANGID; # define CSIDL_CDBURN_AREA 0x3B #endif +// other shell stuff + +#ifndef SHACF_FILESYSTEM +# define SHACF_FILESYSTEM 1 +#endif + +// other stuff + #ifndef CP_ACP # define CP_ACP 0 #endif @@ -346,6 +354,8 @@ typedef WORD LANGID; # define COLOR_WINDOW 5 #endif +// resources + #ifndef RT_BITMAP # define RT_BITMAP MAKEINTRESOURCE(2) #endif @@ -362,6 +372,8 @@ typedef WORD LANGID; # define RT_VERSION MAKEINTRESOURCE(16) #endif +// version + #ifndef VS_FILE_INFO # define VS_FILE_INFO RT_VERSION #endif