michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "softkver.h" michael@0: #include michael@0: michael@0: #define MY_LIBNAME "freebl" michael@0: #define MY_FILEDESCRIPTION "NSS freebl Library" michael@0: michael@0: #define STRINGIZE(x) #x michael@0: #define STRINGIZE2(x) STRINGIZE(x) michael@0: #define SOFTOKEN_VMAJOR_STR STRINGIZE2(SOFTOKEN_VMAJOR) michael@0: michael@0: #ifdef _DEBUG michael@0: #define MY_DEBUG_STR " (debug)" michael@0: #define MY_FILEFLAGS_1 VS_FF_DEBUG michael@0: #else michael@0: #define MY_DEBUG_STR "" michael@0: #define MY_FILEFLAGS_1 0x0L michael@0: #endif michael@0: #if SOFTOKEN_BETA michael@0: #define MY_FILEFLAGS_2 MY_FILEFLAGS_1|VS_FF_PRERELEASE michael@0: #else michael@0: #define MY_FILEFLAGS_2 MY_FILEFLAGS_1 michael@0: #endif michael@0: michael@0: #ifdef WINNT michael@0: #define MY_FILEOS VOS_NT_WINDOWS32 michael@0: #else michael@0: #define MY_FILEOS VOS__WINDOWS32 michael@0: #endif michael@0: michael@0: #define MY_INTERNAL_NAME MY_LIBNAME SOFTOKEN_VMAJOR_STR michael@0: michael@0: ///////////////////////////////////////////////////////////////////////////// michael@0: // michael@0: // Version-information resource michael@0: // michael@0: michael@0: VS_VERSION_INFO VERSIONINFO michael@0: FILEVERSION SOFTOKEN_VMAJOR,SOFTOKEN_VMINOR,SOFTOKEN_VPATCH,SOFTOKEN_VBUILD michael@0: PRODUCTVERSION SOFTOKEN_VMAJOR,SOFTOKEN_VMINOR,SOFTOKEN_VPATCH,SOFTOKEN_VBUILD michael@0: FILEFLAGSMASK VS_FFI_FILEFLAGSMASK michael@0: FILEFLAGS MY_FILEFLAGS_2 michael@0: FILEOS MY_FILEOS michael@0: FILETYPE VFT_DLL michael@0: FILESUBTYPE 0x0L // not used michael@0: michael@0: BEGIN michael@0: BLOCK "StringFileInfo" michael@0: BEGIN michael@0: BLOCK "040904B0" // Lang=US English, CharSet=Unicode michael@0: BEGIN michael@0: VALUE "CompanyName", "Mozilla Foundation\0" michael@0: VALUE "FileDescription", MY_FILEDESCRIPTION MY_DEBUG_STR "\0" michael@0: VALUE "FileVersion", SOFTOKEN_VERSION "\0" michael@0: VALUE "InternalName", MY_INTERNAL_NAME "\0" michael@0: VALUE "OriginalFilename", MY_INTERNAL_NAME ".dll\0" michael@0: VALUE "ProductName", "Network Security Services\0" michael@0: VALUE "ProductVersion", SOFTOKEN_VERSION "\0" michael@0: END michael@0: END michael@0: BLOCK "VarFileInfo" michael@0: BEGIN michael@0: VALUE "Translation", 0x409, 1200 michael@0: END michael@0: END