forked from softace/sqliteodbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
adddsn.rc
62 lines (55 loc) · 1.53 KB
/
adddsn.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
60
61
62
#include <winresrc.h>
#include <winver.h>
#include "resource3.h"
#include "sqlite3.h"
/////////////////////////////////////////////////////////////////////////////
//
// Version
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION VERSION_C,0,0
PRODUCTVERSION VERSION_C,0,0
FILEFLAGSMASK (63)
FILEFLAGS (0)
FILEOS VOS__WINDOWS32
FILETYPE VFT_DLL
FILESUBTYPE (0)
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904e4"
BEGIN
VALUE "CompanyName", "Christian Werner Software & Consulting\0"
VALUE "FileDescription", "SQLiteODBC DSN Manager\0"
VALUE "FileVersion", VERSION "\0"
VALUE "InternalName", "adddsn\0"
VALUE "LegalCopyright", "Public Domain\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "adddsn.exe\0"
VALUE "PrivateBuild", "\0"
VALUE "ProductName", "ODBC Driver for SQLite3 " SQLITE_VERSION "\0"
VALUE "ProductVersion", VERSION "\0"
VALUE "SpecialBuild", "\0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1252
END
END
/////////////////////////////////////////////////////////////////////////////
//
// Icon
//
ico1 ICON "sqlite.ico"
/////////////////////////////////////////////////////////////////////////////
//
// Manifest
//
#ifndef RT_MANIFEST
#define RT_MANIFEST 24
#endif
#ifndef CREATEPROCESS_MANIFEST_RESOURCE_ID
#define CREATEPROCESS_MANIFEST_RESOURCE_ID 1
#endif
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "adddsn.manifest"