|
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
|
2 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
5 |
|
6 |
|
7 |
|
8 ///////////////////////////////////////////////////////////////////////////// |
|
9 |
|
10 // Version stamp for this .DLL |
|
11 |
|
12 #include <windows.h> |
|
13 |
|
14 #include <ver.h> |
|
15 |
|
16 |
|
17 |
|
18 VS_VERSION_INFO VERSIONINFO |
|
19 |
|
20 FILEVERSION 4 // major, minor, release (alpha 1), build # |
|
21 |
|
22 PRODUCTVERSION 4 |
|
23 |
|
24 FILEFLAGSMASK 0 |
|
25 |
|
26 FILEFLAGS 0 // final version |
|
27 |
|
28 FILEOS VOS_DOS_WINDOWS16 |
|
29 |
|
30 FILETYPE VFT_DLL |
|
31 |
|
32 FILESUBTYPE 0 // not used |
|
33 |
|
34 BEGIN |
|
35 |
|
36 BLOCK "StringFileInfo" |
|
37 |
|
38 BEGIN |
|
39 |
|
40 BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilingual |
|
41 |
|
42 BEGIN |
|
43 |
|
44 VALUE "CompanyName", "Netscape Communications Corporation\0" |
|
45 |
|
46 VALUE "FileDescription", "Netscape 16-bit JavaScript Debugger Module\0" |
|
47 |
|
48 VALUE "FileVersion", "4.0\0" |
|
49 |
|
50 VALUE "InternalName", "JSD1640\0" |
|
51 |
|
52 VALUE "LegalCopyright", "Copyright Netscape Communications. 1994-96\0" |
|
53 |
|
54 VALUE "LegalTrademarks", "Netscape, Mozilla\0" |
|
55 |
|
56 VALUE "OriginalFilename","JSD1640.DLL\0" |
|
57 |
|
58 VALUE "ProductName", "NETSCAPE\0" |
|
59 |
|
60 VALUE "ProductVersion", "4.0\0" |
|
61 |
|
62 END |
|
63 |
|
64 END |
|
65 |
|
66 END |
|
67 |