fixed bug #1707823 - VS_FIXEDFILEINFO undefind in util.cpp
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5124 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
dd14f55630
commit
e06dcdcae6
2 changed files with 15 additions and 18 deletions
|
@ -849,6 +849,21 @@ typedef struct _IMAGE_EXPORT_DIRECTORY {
|
||||||
DWORD AddressOfNames;
|
DWORD AddressOfNames;
|
||||||
DWORD AddressOfNameOrdinals;
|
DWORD AddressOfNameOrdinals;
|
||||||
} IMAGE_EXPORT_DIRECTORY,*PIMAGE_EXPORT_DIRECTORY;
|
} IMAGE_EXPORT_DIRECTORY,*PIMAGE_EXPORT_DIRECTORY;
|
||||||
|
typedef struct tagVS_FIXEDFILEINFO {
|
||||||
|
DWORD dwSignature;
|
||||||
|
DWORD dwStrucVersion;
|
||||||
|
DWORD dwFileVersionMS;
|
||||||
|
DWORD dwFileVersionLS;
|
||||||
|
DWORD dwProductVersionMS;
|
||||||
|
DWORD dwProductVersionLS;
|
||||||
|
DWORD dwFileFlagsMask;
|
||||||
|
DWORD dwFileFlags;
|
||||||
|
DWORD dwFileOS;
|
||||||
|
DWORD dwFileType;
|
||||||
|
DWORD dwFileSubtype;
|
||||||
|
DWORD dwFileDateMS;
|
||||||
|
DWORD dwFileDateLS;
|
||||||
|
} VS_FIXEDFILEINFO;
|
||||||
# pragma pack()
|
# pragma pack()
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -26,24 +26,6 @@
|
||||||
|
|
||||||
#include "Platform.h"
|
#include "Platform.h"
|
||||||
#include "strlist.h"
|
#include "strlist.h"
|
||||||
#ifndef _WIN32
|
|
||||||
// all definitions for non Win32 platforms were taken from MinGW's free Win32 library
|
|
||||||
typedef struct tagVS_FIXEDFILEINFO {
|
|
||||||
DWORD dwSignature;
|
|
||||||
DWORD dwStrucVersion;
|
|
||||||
DWORD dwFileVersionMS;
|
|
||||||
DWORD dwFileVersionLS;
|
|
||||||
DWORD dwProductVersionMS;
|
|
||||||
DWORD dwProductVersionLS;
|
|
||||||
DWORD dwFileFlagsMask;
|
|
||||||
DWORD dwFileFlags;
|
|
||||||
DWORD dwFileOS;
|
|
||||||
DWORD dwFileType;
|
|
||||||
DWORD dwFileSubtype;
|
|
||||||
DWORD dwFileDateMS;
|
|
||||||
DWORD dwFileDateLS;
|
|
||||||
} VS_FIXEDFILEINFO;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
struct version_string_list;
|
struct version_string_list;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue