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
This commit is contained in:
kichik 2005-09-06 16:57:58 +00:00
parent 18d00cfb55
commit 13319345b0

View file

@ -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