forked from whoopdedo/publicscripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscrversion.rc
More file actions
60 lines (57 loc) · 1.81 KB
/
Copy pathscrversion.rc
File metadata and controls
60 lines (57 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/******************************************************************************
* scrversion.rc
*
* This file is part of Public Scripts
* Copyright (C) 2005-2011 Tom N Harris <telliamed@whoopdedo.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*****************************************************************************/
#define SCRIPT_VERSION 2,2,0,0
#define SCRIPT_VERSTRING "2.2"
#define SCRIPT_NAME "VersionCheck"
#define SCRIPT_LONGNAME "VersionCheck OSM"
#ifndef WORKSHOP_INVOKED
#include "windows.h"
#endif
VS_VERSION_INFO VERSIONINFO
FILEVERSION SCRIPT_VERSION
PRODUCTVERSION 2,2,0,0
#if DEBUG
FILEFLAGS VS_FF_DEBUG
#else
FILEFLAGS 0
#endif
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_DLL
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904e4"
BEGIN
VALUE "FileDescription", SCRIPT_LONGNAME "\0"
VALUE "FileVersion", SCRIPT_VERSTRING "\0"
VALUE "InternalName", SCRIPT_NAME "\0"
VALUE "LegalCopyright", "Copyright (C) 2003-2011 Tom N Harris" "\0"
VALUE "OriginalFilename", "version.osm" "\0"
VALUE "ProductName", "Public Scripts" "\0"
VALUE "ProductVersion", "2.2" "\0"
VALUE "DarkGameVersion", "All" "\0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 1033, 1252
END
END