]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/sqlite3/sqlite3.rc
MFC r368207,368607:
[FreeBSD/stable/10.git] / contrib / sqlite3 / sqlite3.rc
1 /*
2 ** 2012 September 2
3 **
4 ** The author disclaims copyright to this source code.  In place of
5 ** a legal notice, here is a blessing:
6 **
7 **    May you do good and not evil.
8 **    May you find forgiveness for yourself and forgive others.
9 **    May you share freely, never taking more than you give.
10 **
11 ******************************************************************************
12 **
13 ** This file contains code and resources that are specific to Windows.
14 */
15
16 #if !defined(_WIN32_WCE)
17 #include "winresrc.h"
18 #else
19 #include "windows.h"
20 #endif /* !defined(_WIN32_WCE) */
21
22 #if !defined(VS_FF_NONE)
23 #  define VS_FF_NONE            0x00000000L
24 #endif /* !defined(VS_FF_NONE) */
25
26 #include "sqlite3.h"
27 #include "sqlite3rc.h"
28
29 /*
30  * English (U.S.) resources
31  */
32
33 #if defined(_WIN32)
34 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
35 #pragma code_page(1252)
36 #endif /* defined(_WIN32) */
37
38 /*
39  * Icon
40  */
41
42 #if !defined(RC_VERONLY)
43 #define IDI_SQLITE 101
44
45 IDI_SQLITE ICON "..\\art\\sqlite370.ico"
46 #endif /* !defined(RC_VERONLY) */
47
48 /*
49  * Version
50  */
51
52 VS_VERSION_INFO VERSIONINFO
53   FILEVERSION SQLITE_RESOURCE_VERSION
54   PRODUCTVERSION SQLITE_RESOURCE_VERSION
55   FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
56 #if defined(_DEBUG)
57   FILEFLAGS VS_FF_DEBUG
58 #else
59   FILEFLAGS VS_FF_NONE
60 #endif /* defined(_DEBUG) */
61   FILEOS VOS__WINDOWS32
62   FILETYPE VFT_DLL
63   FILESUBTYPE VFT2_UNKNOWN
64 BEGIN
65   BLOCK "StringFileInfo"
66   BEGIN
67     BLOCK "040904b0"
68     BEGIN
69       VALUE "CompanyName", "SQLite Development Team"
70       VALUE "FileDescription", "SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine."
71       VALUE "FileVersion", SQLITE_VERSION
72       VALUE "InternalName", "sqlite3"
73       VALUE "LegalCopyright", "http://www.sqlite.org/copyright.html"
74       VALUE "ProductName", "SQLite"
75       VALUE "ProductVersion", SQLITE_VERSION
76       VALUE "SourceId", SQLITE_SOURCE_ID
77     END
78   END
79   BLOCK "VarFileInfo"
80   BEGIN
81     VALUE "Translation", 0x409, 0x4b0
82   END
83 END