mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-13 19:41:49 +00:00
![wtc%netscape.com](/assets/img/avatar_default.png)
product name is "Netscape Portable Runtime" and the file descriptions are "NSPR Library", "PLDS Library", "PLC Library", and "PRSTRMS Library". A debug build is indicated in the file description. The copyright years changed to 1996-1999. Modified files: rules.mk, lib/ds/Makefile, lib/ds/Makefile.in, lib/libc/src/Makefile, lib/libc/src/Makefile.in, lib/prstreams/Makefile, lib/prstreams/Makefile.in, prinit.h, nspr.rc Added files: plds.rc, plc.rc, prstrms.rc Removed file: resource.h
80 lines
2.4 KiB
Plaintext
80 lines
2.4 KiB
Plaintext
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.1 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1999 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
|
|
#include "prinit.h"
|
|
#include <winver.h>
|
|
|
|
#define MY_LIBNAME "prstrms"
|
|
#define MY_FILEDESCRIPTION "PRSTRMS Library"
|
|
|
|
#ifdef _DEBUG
|
|
#define MY_DEBUG_STR " (debug)"
|
|
#define MY_FILEFLAGS_1 VS_FF_DEBUG
|
|
#else
|
|
#define MY_DEBUG_STR ""
|
|
#define MY_FILEFLAGS_1 0x0L
|
|
#endif
|
|
#if PR_BETA
|
|
#define MY_FILEFLAGS_2 MY_FILEFLAGS_1|VS_FF_PRERELEASE
|
|
#else
|
|
#define MY_FILEFLAGS_2 MY_FILEFLAGS_1
|
|
#endif
|
|
|
|
#ifdef WINNT
|
|
#define MY_FILEOS VOS_NT_WINDOWS32
|
|
#define MY_INTERNAL_NAME "lib" MY_LIBNAME PR_VMAJOR_STR
|
|
#else
|
|
#define MY_FILEOS VOS__WINDOWS32
|
|
#define MY_INTERNAL_NAME MY_LIBNAME PR_VMAJOR_STR
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Version-information resource
|
|
//
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION PR_VMAJOR,PR_VMINOR,PR_VPATCH,0
|
|
PRODUCTVERSION PR_VMAJOR,PR_VMINOR,PR_VPATCH,0
|
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
FILEFLAGS MY_FILEFLAGS_2
|
|
FILEOS MY_FILEOS
|
|
FILETYPE VFT_DLL
|
|
FILESUBTYPE 0x0L // not used
|
|
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904B0" // Lang=US English, CharSet=Unicode
|
|
BEGIN
|
|
VALUE "CompanyName", "Netscape Communications Corporation\0"
|
|
VALUE "FileDescription", MY_FILEDESCRIPTION MY_DEBUG_STR "\0"
|
|
VALUE "FileVersion", PR_VERSION "\0"
|
|
VALUE "InternalName", MY_INTERNAL_NAME "\0"
|
|
VALUE "LegalCopyright", "Copyright \251 1996-1999 Netscape Communications Corporation\0"
|
|
VALUE "OriginalFilename", MY_INTERNAL_NAME ".dll\0"
|
|
VALUE "ProductName", "Netscape Portable Runtime\0"
|
|
VALUE "ProductVersion", PR_VERSION "\0"
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1200
|
|
END
|
|
END
|