-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathVersion.rc
More file actions
64 lines (55 loc) · 1.85 KB
/
Version.rc
File metadata and controls
64 lines (55 loc) · 1.85 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
60
61
62
63
#define APSTUDIO_READONLY_SYMBOLS
#include "afxres.h"
#include "include\mp_version.h"
#undef APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
// English (U.S.) resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
#ifdef _WIN32
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252)
#endif //_WIN32
#ifndef _MAC
/////////////////////////////////////////////////////////////////////////////
//
// Version
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION MP_VERSION_MAJOR,MP_VERSION_MINOR,MP_VERSION_PATCH
PRODUCTVERSION MP_VERSION_MAJOR,MP_VERSION_MINOR,MP_VERSION_PATCH
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x40004L
FILETYPE 0x1L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "Comments", "Mod_python allows embedding Python within the Apache http server for a considerable boost in performance and added flexibility in designing web based applications. \0"
VALUE "CompanyName", "\0"
VALUE "FileDescription", "Embedding Python within Apache.\0"
VALUE "FileVersion", MP_VERSION_STRING "\0"
VALUE "InternalName", "mod_python\0"
VALUE "LegalCopyright", "Copyright © 2000-2002 Apache Software Foundation.\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "mod_python\0"
VALUE "PrivateBuild", "\0"
VALUE "ProductName", "mod_python\0"
VALUE "ProductVersion", MP_VERSION_STRING "\0"
VALUE "SpecialBuild", "\0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END
#endif // !_MAC
#endif // English (U.S.) resources
/////////////////////////////////////////////////////////////////////////////