forked from fancycode/MemoryModule
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSampleDLL.rc
More file actions
58 lines (50 loc) · 1.01 KB
/
SampleDLL.rc
File metadata and controls
58 lines (50 loc) · 1.01 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
1 VERSIONINFO
FILEVERSION 1,0,0,0
PRODUCTVERSION 1,0,0,0
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", "fancy.code"
VALUE "FileDescription", "SampleDLL"
VALUE "FileVersion", "1.0"
VALUE "InternalName", "SampleDLL"
VALUE "LegalCopyright", "Copyright (c) 2004-2015 Joachim Bauch"
VALUE "OriginalFilename", "SampleDLL.dll"
VALUE "ProductName", "MemoryModule"
VALUE "ProductVersion", "0.0.4"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1252
END
END
#define IDS_HELLO 1
#define IDS_WORLD 20
STRINGTABLE
{
IDS_HELLO, "Hello"
IDS_WORLD, "World!"
}
STRINGRES RCDATA
{
"This is a ANSI string\0",
L"This is a UNICODE string\0",
}
STRINGRES1 RCDATA
{
"This is ANSI string 1\0",
L"This is UNICODE string 1\0",
}
STRINGRES2 RCDATA
{
"This is ANSI string 2\0",
L"This is UNICODE string 2\0",
}
STRINGRES3 RCDATA
{
"This is ANSI string 3\0",
L"This is UNICODE string 3\0",
}