forked from dail8859/LuaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVersion.rc
More file actions
38 lines (35 loc) · 1.02 KB
/
Copy pathVersion.rc
File metadata and controls
38 lines (35 loc) · 1.02 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
#include <windows.h>
#include "Version.h"
//
// Version Information resources
//
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
1 VERSIONINFO
FILEVERSION VERSION_NUM
PRODUCTVERSION VERSION_NUM
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEFLAGS VS_FF_SPECIALBUILD
FILEOS VOS__WINDOWS32
FILETYPE VFT_DLL
FILESUBTYPE VFT2_UNKNOWN
{
BLOCK "StringFileInfo"
{
BLOCK "040904b0"
{
VALUE "Comments", "Notepad++ plugin for Lua scripting"
VALUE "CompanyName", "Justin Dailey <dail8859@yahoo.com>"
VALUE "FileDescription", "Notepad++ plugin for Lua scripting"
VALUE "FileVersion", VERSION_TEXT
VALUE "InternalName", "LuaScript"
VALUE "OriginalFilename", "LuaScript.dll"
VALUE "ProductName", "LuaScript"
VALUE "ProductVersion", VERSION_TEXT
VALUE "SpecialBuild", "UNICODE"
}
}
BLOCK "VarFileInfo"
{
VALUE "Translation", 0x0409, 0x01B5
}
}