mistachkin | 4d9d1f4 | 2012-09-03 10:32:32 +0000 | [diff] [blame] | 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" |
mistachkin | dcf31a1 | 2013-09-16 20:46:34 +0000 | [diff] [blame] | 20 | #endif /* !defined(_WIN32_WCE) */ |
mistachkin | 4d9d1f4 | 2012-09-03 10:32:32 +0000 | [diff] [blame] | 21 | |
mistachkin | dcf31a1 | 2013-09-16 20:46:34 +0000 | [diff] [blame] | 22 | #if !defined(VS_FF_NONE) |
mistachkin | e62d373 | 2013-09-16 19:27:36 +0000 | [diff] [blame] | 23 | # define VS_FF_NONE 0x00000000L |
mistachkin | dcf31a1 | 2013-09-16 20:46:34 +0000 | [diff] [blame] | 24 | #endif /* !defined(VS_FF_NONE) */ |
mistachkin | e62d373 | 2013-09-16 19:27:36 +0000 | [diff] [blame] | 25 | |
mistachkin | 4d9d1f4 | 2012-09-03 10:32:32 +0000 | [diff] [blame] | 26 | #include "sqlite3.h" |
| 27 | #include "sqlite3rc.h" |
| 28 | |
| 29 | /* |
| 30 | * English (U.S.) resources |
| 31 | */ |
| 32 | |
mistachkin | dcf31a1 | 2013-09-16 20:46:34 +0000 | [diff] [blame] | 33 | #if defined(_WIN32) |
mistachkin | 4d9d1f4 | 2012-09-03 10:32:32 +0000 | [diff] [blame] | 34 | LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US |
| 35 | #pragma code_page(1252) |
mistachkin | dcf31a1 | 2013-09-16 20:46:34 +0000 | [diff] [blame] | 36 | #endif /* defined(_WIN32) */ |
mistachkin | 4d9d1f4 | 2012-09-03 10:32:32 +0000 | [diff] [blame] | 37 | |
| 38 | /* |
mistachkin | cf4312c | 2014-08-14 02:59:51 +0000 | [diff] [blame] | 39 | * Icon |
| 40 | */ |
| 41 | |
| 42 | #define IDI_SQLITE 101 |
| 43 | |
| 44 | IDI_SQLITE ICON "..\\art\\sqlite370.ico" |
| 45 | |
| 46 | /* |
mistachkin | 4d9d1f4 | 2012-09-03 10:32:32 +0000 | [diff] [blame] | 47 | * Version |
| 48 | */ |
| 49 | |
| 50 | VS_VERSION_INFO VERSIONINFO |
| 51 | FILEVERSION SQLITE_RESOURCE_VERSION |
| 52 | PRODUCTVERSION SQLITE_RESOURCE_VERSION |
mistachkin | e62d373 | 2013-09-16 19:27:36 +0000 | [diff] [blame] | 53 | FILEFLAGSMASK VS_FFI_FILEFLAGSMASK |
mistachkin | 4d9d1f4 | 2012-09-03 10:32:32 +0000 | [diff] [blame] | 54 | #if defined(_DEBUG) |
mistachkin | e62d373 | 2013-09-16 19:27:36 +0000 | [diff] [blame] | 55 | FILEFLAGS VS_FF_DEBUG |
mistachkin | 4d9d1f4 | 2012-09-03 10:32:32 +0000 | [diff] [blame] | 56 | #else |
mistachkin | e62d373 | 2013-09-16 19:27:36 +0000 | [diff] [blame] | 57 | FILEFLAGS VS_FF_NONE |
mistachkin | dcf31a1 | 2013-09-16 20:46:34 +0000 | [diff] [blame] | 58 | #endif /* defined(_DEBUG) */ |
mistachkin | 4d9d1f4 | 2012-09-03 10:32:32 +0000 | [diff] [blame] | 59 | FILEOS VOS__WINDOWS32 |
mistachkin | dcf31a1 | 2013-09-16 20:46:34 +0000 | [diff] [blame] | 60 | FILETYPE VFT_DLL |
mistachkin | 4d9d1f4 | 2012-09-03 10:32:32 +0000 | [diff] [blame] | 61 | FILESUBTYPE VFT2_UNKNOWN |
| 62 | BEGIN |
| 63 | BLOCK "StringFileInfo" |
| 64 | BEGIN |
| 65 | BLOCK "040904b0" |
| 66 | BEGIN |
| 67 | VALUE "CompanyName", "SQLite Development Team" |
| 68 | VALUE "FileDescription", "SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine." |
| 69 | VALUE "FileVersion", SQLITE_VERSION |
| 70 | VALUE "InternalName", "sqlite3" |
| 71 | VALUE "LegalCopyright", "http://www.sqlite.org/copyright.html" |
| 72 | VALUE "ProductName", "SQLite" |
| 73 | VALUE "ProductVersion", SQLITE_VERSION |
| 74 | VALUE "SourceId", SQLITE_SOURCE_ID |
| 75 | END |
| 76 | END |
| 77 | BLOCK "VarFileInfo" |
| 78 | BEGIN |
mistachkin | dcf31a1 | 2013-09-16 20:46:34 +0000 | [diff] [blame] | 79 | VALUE "Translation", 0x409, 0x4b0 |
mistachkin | 4d9d1f4 | 2012-09-03 10:32:32 +0000 | [diff] [blame] | 80 | END |
| 81 | END |