sqlite3.rc 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. #if !defined(_WIN32_WCE)
  16. #include "winresrc.h"
  17. #else
  18. #include "windows.h"
  19. #endif /* !defined(_WIN32_WCE) */
  20. #if !defined(VS_FF_NONE)
  21. # define VS_FF_NONE 0x00000000L
  22. #endif /* !defined(VS_FF_NONE) */
  23. #include "sqlite3.h"
  24. #include "sqlite3rc.h"
  25. /*
  26. * English (U.S.) resources
  27. */
  28. #if defined(_WIN32)
  29. LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
  30. #pragma code_page(1252)
  31. #endif /* defined(_WIN32) */
  32. /*
  33. * Version
  34. */
  35. VS_VERSION_INFO VERSIONINFO
  36. FILEVERSION SQLITE_RESOURCE_VERSION
  37. PRODUCTVERSION SQLITE_RESOURCE_VERSION
  38. FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  39. #if defined(_DEBUG)
  40. FILEFLAGS VS_FF_DEBUG
  41. #else
  42. FILEFLAGS VS_FF_NONE
  43. #endif /* defined(_DEBUG) */
  44. FILEOS VOS__WINDOWS32
  45. FILETYPE VFT_DLL
  46. FILESUBTYPE VFT2_UNKNOWN
  47. BEGIN
  48. BLOCK "StringFileInfo"
  49. BEGIN
  50. BLOCK "040904b0"
  51. BEGIN
  52. VALUE "CompanyName", "SQLite Development Team"
  53. VALUE "FileDescription", "SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine."
  54. VALUE "FileVersion", SQLITE_VERSION
  55. VALUE "InternalName", "sqlite3"
  56. VALUE "LegalCopyright", "http://www.sqlite.org/copyright.html"
  57. VALUE "ProductName", "SQLite"
  58. VALUE "ProductVersion", SQLITE_VERSION
  59. VALUE "SourceId", SQLITE_SOURCE_ID
  60. END
  61. END
  62. BLOCK "VarFileInfo"
  63. BEGIN
  64. VALUE "Translation", 0x409, 0x4b0
  65. END
  66. END