michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "sqlite3.h" michael@0: #include "sqlite-version.h" michael@0: #include michael@0: michael@0: #define SQLITE_COMPANY_NAME "sqlite.org" michael@0: #define SQLITE_INTERNAL_NAME "sqlite3" michael@0: #define SQLITE_FILEDESCRIPTION "SQLite Database Library" michael@0: michael@0: #define MY_FILEOS VOS_NT_WINDOWS32 michael@0: michael@0: ///////////////////////////////////////////////////////////////////////////// michael@0: // michael@0: // Version-information resource michael@0: // michael@0: michael@0: VS_VERSION_INFO VERSIONINFO michael@0: michael@0: FILEVERSION SQLITE_VERSION_MAJOR,SQLITE_VERSION_MINOR,SQLITE_VERSION_PATCH,SQLITE_VERSION_SUBPATCH michael@0: PRODUCTVERSION SQLITE_VERSION_MAJOR,SQLITE_VERSION_MINOR,SQLITE_VERSION_PATCH,SQLITE_VERSION_SUBPATCH michael@0: FILEOS MY_FILEOS michael@0: FILETYPE VFT_DLL michael@0: michael@0: BEGIN michael@0: BLOCK "StringFileInfo" michael@0: BEGIN michael@0: BLOCK "040904B0" // Lang=US English, CharSet=Unicode michael@0: BEGIN michael@0: VALUE "CompanyName", SQLITE_COMPANY_NAME "\0" michael@0: VALUE "FileDescription", SQLITE_FILEDESCRIPTION "\0" michael@0: VALUE "FileVersion", SQLITE_VERSION "\0" michael@0: VALUE "InternalName", SQLITE_INTERNAL_NAME "\0" michael@0: VALUE "OriginalFilename", SQLITE_INTERNAL_NAME ".dll\0" michael@0: VALUE "ProductName", SQLITE_FILEDESCRIPTION "\0" michael@0: VALUE "ProductVersion", SQLITE_VERSION "\0" michael@0: END michael@0: END michael@0: BLOCK "VarFileInfo" michael@0: BEGIN michael@0: VALUE "Translation", 0x409, 1200 michael@0: END michael@0: END