source: Main/trunk/Server/tewi.rc@ 253

Last change on this file since 253 was 244, checked in by Nishi, on Oct 4, 2024 at 5:04:15 AM

adding gui manager

File size: 753 bytes
Line 
1#include <winver.h>
2#include "tw_version.h"
3#include "../config.h"
4
5TEWI ICON "../Binary/tewi.ico"
6VS_VERSION_INFO VERSIONINFO
7 FILEVERSION 1,0,0,0
8 PRODUCTVERSION 1,0,0,0
9BEGIN
10 BLOCK "StringFileInfo"
11 BEGIN
12 BLOCK "040904E4"
13 BEGIN
14 VALUE "CompanyName", "Nishi\0"
15#ifdef NO_SSL
16 VALUE "FileDescription", "Simple HTTP Daemon\0"
17#else
18 VALUE "FileDescription", "Simple HTTP Daemon with TLS/SSL\0"
19#endif
20 VALUE "LegalCopyright", "Public domain, original by Nishi\0"
21 VALUE "FileVersion", TW_VERSION
22 VALUE "ProductVersion", TW_VERSION
23 VALUE "ProductName", "Tewi HTTPd\0"
24 VALUE "License", "Unlicense\0"
25 VALUE "Info", "http://nishi.boats/tewi\0"
26 END
27 END
28
29 BLOCK "VarFileInfo"
30 BEGIN
31 VALUE "Translation", 0x409, 65001
32 END
33END
Note: See TracBrowser for help on using the repository browser.