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