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) 34LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US 35#pragma code_page(1252) 36#endif /* defined(_WIN32) */ 37 38/* 39 * Version 40 */ 41 42VS_VERSION_INFO VERSIONINFO 43 FILEVERSION SQLITE_RESOURCE_VERSION 44 PRODUCTVERSION SQLITE_RESOURCE_VERSION 45 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK 46#if defined(_DEBUG) 47 FILEFLAGS VS_FF_DEBUG 48#else 49 FILEFLAGS VS_FF_NONE 50#endif /* defined(_DEBUG) */ 51 FILEOS VOS__WINDOWS32 52 FILETYPE VFT_DLL 53 FILESUBTYPE VFT2_UNKNOWN 54BEGIN 55 BLOCK "StringFileInfo" 56 BEGIN 57 BLOCK "040904b0" 58 BEGIN 59 VALUE "CompanyName", "SQLite Development Team" 60 VALUE "FileDescription", "SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine." 61 VALUE "FileVersion", SQLITE_VERSION 62 VALUE "InternalName", "sqlite3" 63 VALUE "LegalCopyright", "http://www.sqlite.org/copyright.html" 64 VALUE "ProductName", "SQLite" 65 VALUE "ProductVersion", SQLITE_VERSION 66 VALUE "SourceId", SQLITE_SOURCE_ID 67 END 68 END 69 BLOCK "VarFileInfo" 70 BEGIN 71 VALUE "Translation", 0x409, 0x4b0 72 END 73END 74