| OLD | NEW |
| 1 /* | 1 /* |
| 2 ** 2012 September 2 | 2 ** 2012 September 2 |
| 3 ** | 3 ** |
| 4 ** The author disclaims copyright to this source code. In place of | 4 ** The author disclaims copyright to this source code. In place of |
| 5 ** a legal notice, here is a blessing: | 5 ** a legal notice, here is a blessing: |
| 6 ** | 6 ** |
| 7 ** May you do good and not evil. | 7 ** May you do good and not evil. |
| 8 ** May you find forgiveness for yourself and forgive others. | 8 ** May you find forgiveness for yourself and forgive others. |
| 9 ** May you share freely, never taking more than you give. | 9 ** May you share freely, never taking more than you give. |
| 10 ** | 10 ** |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 #if defined(_WIN32) | 33 #if defined(_WIN32) |
| 34 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US | 34 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US |
| 35 #pragma code_page(1252) | 35 #pragma code_page(1252) |
| 36 #endif /* defined(_WIN32) */ | 36 #endif /* defined(_WIN32) */ |
| 37 | 37 |
| 38 /* | 38 /* |
| 39 * Icon | 39 * Icon |
| 40 */ | 40 */ |
| 41 | 41 |
| 42 #if !defined(RC_VERONLY) |
| 42 #define IDI_SQLITE 101 | 43 #define IDI_SQLITE 101 |
| 43 | 44 |
| 44 IDI_SQLITE ICON "..\\art\\sqlite370.ico" | 45 IDI_SQLITE ICON "..\\art\\sqlite370.ico" |
| 46 #endif /* !defined(RC_VERONLY) */ |
| 45 | 47 |
| 46 /* | 48 /* |
| 47 * Version | 49 * Version |
| 48 */ | 50 */ |
| 49 | 51 |
| 50 VS_VERSION_INFO VERSIONINFO | 52 VS_VERSION_INFO VERSIONINFO |
| 51 FILEVERSION SQLITE_RESOURCE_VERSION | 53 FILEVERSION SQLITE_RESOURCE_VERSION |
| 52 PRODUCTVERSION SQLITE_RESOURCE_VERSION | 54 PRODUCTVERSION SQLITE_RESOURCE_VERSION |
| 53 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK | 55 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK |
| 54 #if defined(_DEBUG) | 56 #if defined(_DEBUG) |
| (...skipping 17 matching lines...) Expand all Loading... |
| 72 VALUE "ProductName", "SQLite" | 74 VALUE "ProductName", "SQLite" |
| 73 VALUE "ProductVersion", SQLITE_VERSION | 75 VALUE "ProductVersion", SQLITE_VERSION |
| 74 VALUE "SourceId", SQLITE_SOURCE_ID | 76 VALUE "SourceId", SQLITE_SOURCE_ID |
| 75 END | 77 END |
| 76 END | 78 END |
| 77 BLOCK "VarFileInfo" | 79 BLOCK "VarFileInfo" |
| 78 BEGIN | 80 BEGIN |
| 79 VALUE "Translation", 0x409, 0x4b0 | 81 VALUE "Translation", 0x409, 0x4b0 |
| 80 END | 82 END |
| 81 END | 83 END |
| OLD | NEW |