-
Notifications
You must be signed in to change notification settings - Fork 7
/
Daemon.rc
59 lines (52 loc) · 1.54 KB
/
Daemon.rc
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
// Resource.h
// Resource header for the Win32::Daemon Perl extension
// (c) Dave Roth
// Courtesy of Roth Consulting
// http://www.roth.net/
//
// Available under the GNU license.
// 2000.03.19
#include <windows.h>
#include <windef.h>
#include "preWin32Perl.h"
#include "Win32Perl.h"
#include "Daemon.h"
#include "DaemonBuild.h"
// Icon
//Win32Daemon ICON DISCARDABLE "Daemon.ICO"
#define Daemon 102
VS_VERSION_INFO VERSIONINFO
FILEVERSION FILE_VERSION // PERLRC_VERSION
PRODUCTVERSION PROD_VERSION // PERLRC_VERSION
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEFLAGS VER_DEBUG
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_DLL
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
// VALUE "Comments", RC_COMMENTS
VALUE "CompanyName", RC_COMPANY
VALUE "FileDescription", RC_FILEDESC
VALUE "FileVersion", RC_FILEVER
VALUE "InternalName", RC_INTNAME
VALUE "LegalCopyright", RC_COPYRIGHT
VALUE "OriginalFilename", RC_FILENAME
VALUE "PrivateBuild", RC_PBUILD
VALUE "ProductName", RC_PRODNAME
VALUE "ProductVersion", RC_PRODVER
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 0x04E4
// English language (0x409) and the Windows ANSI codepage (0x04E4)
END
END