-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAutoRun.rc
More file actions
50 lines (46 loc) · 1.2 KB
/
AutoRun.rc
File metadata and controls
50 lines (46 loc) · 1.2 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
#include "resource.h"
#include "Windows.h"
#define AUTORUN_VERSION_WIN AUTORUN_V1,AUTORUN_V2,AUTORUN_V3,0
#define AUTORUN_VERSION_WIN_ST AUTORUN_VERSION_ST ".0"
IDI_MYICON ICON "autorun-logo.ico"
IDR_TRAY_MENU MENU
BEGIN
POPUP ""
BEGIN
MENUITEM "&About", ID_TRAY_MENU_ABOUT
MENUITEM SEPARATOR
MENUITEM "E&xit", ID_TRAY_MENU_EXIT
END
END
1 VERSIONINFO
FILEVERSION AUTORUN_VERSION_WIN
PRODUCTVERSION AUTORUN_VERSION_WIN
FILEFLAGSMASK 0x3fL
#ifdef AUTORUN_DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x40004L
FILETYPE 0x1L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "CompanyName", "Division Industries LLC"
VALUE "FileDescription", "AutoRun Service"
VALUE "FileVersion", AUTORUN_VERSION_WIN_ST
VALUE "InternalName", "AutoRun.exe"
VALUE "LegalCopyright", "GNU General Public License v3.0"
VALUE "OriginalFilename", "AutoRun.exe"
VALUE "ProductName", "AutoRun"
VALUE "ProductVersion", AUTORUN_VERSION_WIN_ST
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END