nsprpub/lib/libc/src/plc.rc

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

michael@0 1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
michael@0 2 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 5
michael@0 6
michael@0 7 #include "prinit.h"
michael@0 8 #include <winver.h>
michael@0 9
michael@0 10 #define MY_LIBNAME "plc"
michael@0 11 #define MY_FILEDESCRIPTION "PLC Library"
michael@0 12
michael@0 13 #define STRINGIZE(x) #x
michael@0 14 #define STRINGIZE2(x) STRINGIZE(x)
michael@0 15 #define PR_VMAJOR_STR STRINGIZE2(PR_VMAJOR)
michael@0 16
michael@0 17 #ifdef _DEBUG
michael@0 18 #define MY_DEBUG_STR " (debug)"
michael@0 19 #define MY_FILEFLAGS_1 VS_FF_DEBUG
michael@0 20 #else
michael@0 21 #define MY_DEBUG_STR ""
michael@0 22 #define MY_FILEFLAGS_1 0x0L
michael@0 23 #endif
michael@0 24 #if PR_BETA
michael@0 25 #define MY_FILEFLAGS_2 MY_FILEFLAGS_1|VS_FF_PRERELEASE
michael@0 26 #else
michael@0 27 #define MY_FILEFLAGS_2 MY_FILEFLAGS_1
michael@0 28 #endif
michael@0 29
michael@0 30 #ifdef WINNT
michael@0 31 #define MY_FILEOS VOS_NT_WINDOWS32
michael@0 32 #define MY_INTERNAL_NAME "lib" MY_LIBNAME PR_VMAJOR_STR
michael@0 33 #else
michael@0 34 #define MY_FILEOS VOS__WINDOWS32
michael@0 35 #define MY_INTERNAL_NAME MY_LIBNAME PR_VMAJOR_STR
michael@0 36 #endif
michael@0 37
michael@0 38 /////////////////////////////////////////////////////////////////////////////
michael@0 39 //
michael@0 40 // Version-information resource
michael@0 41 //
michael@0 42
michael@0 43 VS_VERSION_INFO VERSIONINFO
michael@0 44 FILEVERSION PR_VMAJOR,PR_VMINOR,PR_VPATCH,0
michael@0 45 PRODUCTVERSION PR_VMAJOR,PR_VMINOR,PR_VPATCH,0
michael@0 46 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
michael@0 47 FILEFLAGS MY_FILEFLAGS_2
michael@0 48 FILEOS MY_FILEOS
michael@0 49 FILETYPE VFT_DLL
michael@0 50 FILESUBTYPE 0x0L // not used
michael@0 51
michael@0 52 BEGIN
michael@0 53 BLOCK "StringFileInfo"
michael@0 54 BEGIN
michael@0 55 BLOCK "040904B0" // Lang=US English, CharSet=Unicode
michael@0 56 BEGIN
michael@0 57 VALUE "CompanyName", "Mozilla Foundation\0"
michael@0 58 VALUE "FileDescription", MY_FILEDESCRIPTION MY_DEBUG_STR "\0"
michael@0 59 VALUE "FileVersion", PR_VERSION "\0"
michael@0 60 VALUE "InternalName", MY_INTERNAL_NAME "\0"
michael@0 61 VALUE "OriginalFilename", MY_INTERNAL_NAME ".dll\0"
michael@0 62 VALUE "ProductName", "Netscape Portable Runtime\0"
michael@0 63 VALUE "ProductVersion", PR_VERSION "\0"
michael@0 64 END
michael@0 65 END
michael@0 66 BLOCK "VarFileInfo"
michael@0 67 BEGIN
michael@0 68 VALUE "Translation", 0x409, 1200
michael@0 69 END
michael@0 70 END

mercurial