1/* 2 Copyright (c) 2011 mingw-w64 project 3 4 Permission is hereby granted, free of charge, to any person obtaining a 5 copy of this software and associated documentation files (the "Software"), 6 to deal in the Software without restriction, including without limitation 7 the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 and/or sell copies of the Software, and to permit persons to whom the 9 Software is furnished to do so, subject to the following conditions: 10 11 The above copyright notice and this permission notice shall be included in 12 all copies or substantial portions of the Software. 13 14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 19 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20 DEALINGS IN THE SOFTWARE. 21*/ 22 23#include <winver.h> 24#include "wpth_ver.h" 25 26#define WPTH_VERSIONINFO_NAME "WinPthreadGC\0" 27#ifdef _WIN64 28#define WPTH_VERSIONINFO_COMMENT "GNU C build -- MinGW-w64 64-bit\0" 29#else 30#define WPTH_VERSIONINFO_COMMENT "GNU C build -- MinGW-w64 32-bit\0" 31#endif 32 33VS_VERSION_INFO VERSIONINFO 34 FILEVERSION WPTH_VERSION 35 PRODUCTVERSION WPTH_VERSION 36 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK 37 FILEFLAGS 0 38 FILEOS VOS__WINDOWS32 39 FILETYPE VFT_DLL 40BEGIN 41 BLOCK "StringFileInfo" 42 BEGIN 43 BLOCK "040904b0" 44 BEGIN 45 VALUE "FileDescription", "POSIX WinThreads for Windows\0" 46 VALUE "ProductVersion", WPTH_VERSION_STRING 47 VALUE "FileVersion", WPTH_VERSION_STRING 48 VALUE "InternalName", WPTH_VERSIONINFO_NAME 49 VALUE "OriginalFilename", WPTH_VERSIONINFO_NAME 50 VALUE "CompanyName", "MingW-W64 Project. All rights reserved.\0" 51 VALUE "LegalCopyright", "Copyright (C) MingW-W64 Project Members 2010-2011\0" 52 VALUE "Licence", "ZPL\0" 53 VALUE "Info", "http://mingw-w64.sourceforge.net/\0" 54 VALUE "Comment", WPTH_VERSIONINFO_COMMENT 55 END 56 END 57 BLOCK "VarFileInfo" 58 BEGIN 59 VALUE "Translation", 0x409, 1200 60 END 61END 62 63