]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Readability improvements to the Win32 RC file.
authormistachkin <mistachkin@noemail.net>
Mon, 16 Sep 2013 20:46:34 +0000 (20:46 +0000)
committermistachkin <mistachkin@noemail.net>
Mon, 16 Sep 2013 20:46:34 +0000 (20:46 +0000)
FossilOrigin-Name: e64590625774228b5602a66cfb087cf74e2b438b

manifest
manifest.uuid
src/sqlite3.rc

index 02f095bc1e69cf216b9aa8e43ab6e422755a5ea3..331bd64df516972cde5cc10ea6916d3afe3990b2 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Minor\sconsistency\sfixes\sto\sthe\sWin32\sRC\sfile.
-D 2013-09-16T19:27:36.964
+C Readability\simprovements\sto\sthe\sWin32\sRC\sfile.
+D 2013-09-16T20:46:34.595
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in 5e41da95d92656a5004b03d3576e8b226858a28e
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -219,7 +219,7 @@ F src/rowset.c 64655f1a627c9c212d9ab497899e7424a34222e0
 F src/select.c fc60e8e539cb9a895cac197de95048759b0f3ab0
 F src/shell.c d920a891ca09b8bd262cced7fb0ab9d723f7a747
 F src/sqlite.h.in ec40aa958a270416fb04b4f72210357bf163d2c5
-F src/sqlite3.rc 9bc020ab42953c9b534a36625f2aea95d305f8f0
+F src/sqlite3.rc 11094cc6a157a028b301a9f06b3d03089ea37c3e
 F src/sqlite3ext.h 886f5a34de171002ad46fae8c36a7d8051c190fc
 F src/sqliteInt.h 18c7f80e7e23098942436f7286e9c93adc6908be
 F src/sqliteLimit.h 164b0e6749d31e0daa1a4589a169d31c0dec7b3d
@@ -1114,7 +1114,7 @@ F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
 F tool/wherecosttest.c f407dc4c79786982a475261866a161cd007947ae
 F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff
-P daf6ba413cb3cb6065774ba07495eab4a28b49b0
-R bf8bf2a00e798ca367a5d08e40be962c
+P 619c5211b91aef98794e2e0a6f03832619fc83c0
+R 47d9951cd9612e10d648f9000a88ebbd
 U mistachkin
-Z a832b9bdbbfaa169c6e70acd3e4ce465
+Z 8ac9e680ba708744fd7ab8d11bcab543
index b48c5a2510ee58e2f643f0b2d39b7ae4d505ac71..11eb9666ae3c57d100c671e1f68eaa49c670d03c 100644 (file)
@@ -1 +1 @@
-619c5211b91aef98794e2e0a6f03832619fc83c0
\ No newline at end of file
+e64590625774228b5602a66cfb087cf74e2b438b
\ No newline at end of file
index 19ba3deae5bcc565ae85690cdc71a07745baf4a4..aedbb63ebd9cb4a042b69b5bf42f93c000911339 100644 (file)
 #include "winresrc.h"
 #else
 #include "windows.h"
-#endif
+#endif /* !defined(_WIN32_WCE) */
 
-#ifndef VS_FF_NONE
+#if !defined(VS_FF_NONE)
 #  define VS_FF_NONE            0x00000000L
-#endif
+#endif /* !defined(VS_FF_NONE) */
 
 #include "sqlite3.h"
 #include "sqlite3rc.h"
  * English (U.S.) resources
  */
 
-#ifdef _WIN32
+#if defined(_WIN32)
 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
 #pragma code_page(1252)
-#endif /* _WIN32 */
+#endif /* defined(_WIN32) */
 
 /*
  * Version
@@ -47,9 +47,9 @@ VS_VERSION_INFO VERSIONINFO
   FILEFLAGS VS_FF_DEBUG
 #else
   FILEFLAGS VS_FF_NONE
-#endif
+#endif /* defined(_DEBUG) */
   FILEOS VOS__WINDOWS32
-  FILETYPE VFT_APP
+  FILETYPE VFT_DLL
   FILESUBTYPE VFT2_UNKNOWN
 BEGIN
   BLOCK "StringFileInfo"
@@ -68,6 +68,6 @@ BEGIN
   END
   BLOCK "VarFileInfo"
   BEGIN
-    VALUE "Translation", 0x409, 1200
+    VALUE "Translation", 0x409, 0x4b0
   END
 END