blob: 969876da1e57143de0b4d1c7629fd3356f2e1c96 [file] [log] [blame]
mistachkin4d9d1f42012-09-03 10:32:32 +00001/*
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
21
22#include "sqlite3.h"
23#include "sqlite3rc.h"
24
25/*
26 * English (U.S.) resources
27 */
28
29#ifdef _WIN32
30LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
31#pragma code_page(1252)
32#endif /* _WIN32 */
33
34/*
35 * Version
36 */
37
38VS_VERSION_INFO VERSIONINFO
39 FILEVERSION SQLITE_RESOURCE_VERSION
40 PRODUCTVERSION SQLITE_RESOURCE_VERSION
41 FILEFLAGSMASK 0x3F
42#if defined(_DEBUG)
43 FILEFLAGS 0x1L
44#else
45 FILEFLAGS 0x0L
46#endif
47 FILEOS VOS__WINDOWS32
48 FILETYPE VFT_APP
49 FILESUBTYPE VFT2_UNKNOWN
50BEGIN
51 BLOCK "StringFileInfo"
52 BEGIN
53 BLOCK "040904b0"
54 BEGIN
55 VALUE "CompanyName", "SQLite Development Team"
56 VALUE "FileDescription", "SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine."
57 VALUE "FileVersion", SQLITE_VERSION
58 VALUE "InternalName", "sqlite3"
59 VALUE "LegalCopyright", "http://www.sqlite.org/copyright.html"
60 VALUE "ProductName", "SQLite"
61 VALUE "ProductVersion", SQLITE_VERSION
62 VALUE "SourceId", SQLITE_SOURCE_ID
63 END
64 END
65 BLOCK "VarFileInfo"
66 BEGIN
67 VALUE "Translation", 0x409, 1200
68 END
69END