]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Make sure all non-API functions in os_win.c have file scope.
authordrh <drh@noemail.net>
Thu, 13 Oct 2011 14:05:32 +0000 (14:05 +0000)
committerdrh <drh@noemail.net>
Thu, 13 Oct 2011 14:05:32 +0000 (14:05 +0000)
Ticket [35c54c874987]

FossilOrigin-Name: 17e4fde5c541f1bba723386938b6123b2431bffc

manifest
manifest.uuid
src/os_win.c

index cea56f17415f26b39267032340ce0e1a185a26b4..c92b136d8ac25d83e92ca0d6e98e30f8d5964e9a 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Do\sthe\s".dump"\scommand\sinside\sof\sa\stransaction\sto\sprevent\sother\sprocesses\nfrom\smodifying\sthe\sdatabase\swhile\sthe\sdump\sis\sunderway.\nTicket\s[2466653295e65]
-D 2011-10-13T13:34:04.111
+C Make\ssure\sall\snon-API\sfunctions\sin\sos_win.c\shave\sfile\sscope.\nTicket\s[35c54c874987]
+D 2011-10-13T14:05:32.038
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in a162fe39e249b8ed4a65ee947c30152786cfe897
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -166,7 +166,7 @@ F src/os.h 9dbed8c2b9c1f2f2ebabc09e49829d4777c26bf9
 F src/os_common.h 92815ed65f805560b66166e3583470ff94478f04
 F src/os_os2.c 4a75888ba3dfc820ad5e8177025972d74d7f2440
 F src/os_unix.c d42ad1c4cb8360825639a64c44bc63672ace8916
-F src/os_win.c 58c1cef8a167275d5238bdfb3c455e53e3146354
+F src/os_win.c 49d418916428a59d773f39993db0ecde56ab4c37
 F src/pager.c 8a6ac3e0d9694412076e2273e3c81e9c4e08758f
 F src/pager.h dbcaa791e8b6c3a6b77c168c5c27deec289fb176
 F src/parse.y 12b7ebd61ea54f0e1b1083ff69cc2c8ce9353d58
@@ -966,7 +966,7 @@ F tool/symbols.sh caaf6ccc7300fd43353318b44524853e222557d5
 F tool/tostr.awk e75472c2f98dd76e06b8c9c1367f4ab07e122d06
 F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
 F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
-P 4bf4d5ebfbf5d157a8bf3a3817e2ce350f25af0e
-R c828aecf4dc802851bfe4e4621a41639
+P 1c00d5454c85dfddb6c628c3742b4ddeaad6423a
+R 62079adc2aa04b6b18d74fffb6482754
 U drh
-Z 1d222bf3e883f519ea46d7f751e5c97d
+Z a52af7b3a4f3b4ce4a34929a0d76fe19
index dd97cc88b9d87404cc6dfa70807d8eb3aad03584..b9cc217f671e1037a2529b98b73cf56b1113891e 100644 (file)
@@ -1 +1 @@
-1c00d5454c85dfddb6c628c3742b4ddeaad6423a
\ No newline at end of file
+17e4fde5c541f1bba723386938b6123b2431bffc
\ No newline at end of file
index ef70522a033cf9dc885ad721083f8a5bfc2f48b6..4518030483f6a095e87e0da0889b10d8a606e11f 100644 (file)
@@ -2981,7 +2981,7 @@ static void winDlError(sqlite3_vfs *pVfs, int nBuf, char *zBufOut){
   UNUSED_PARAMETER(pVfs);
   getLastErrorMsg(nBuf, zBufOut);
 }
-void (*winDlSym(sqlite3_vfs *pVfs, void *pHandle, const char *zSymbol))(void){
+static void (*winDlSym(sqlite3_vfs *pVfs, void *pHandle, const char *zSymbol))(void){
   UNUSED_PARAMETER(pVfs);
 #if SQLITE_OS_WINCE
   /* The GetProcAddressA() routine is only available on wince. */
@@ -2992,7 +2992,7 @@ void (*winDlSym(sqlite3_vfs *pVfs, void *pHandle, const char *zSymbol))(void){
   return (void(*)(void))GetProcAddress((HANDLE)pHandle, zSymbol);
 #endif
 }
-void winDlClose(sqlite3_vfs *pVfs, void *pHandle){
+static void winDlClose(sqlite3_vfs *pVfs, void *pHandle){
   UNUSED_PARAMETER(pVfs);
   FreeLibrary((HANDLE)pHandle);
 }
@@ -3111,7 +3111,7 @@ static int winCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *piNow){
 ** current time and date as a Julian Day number into *prNow and
 ** return 0.  Return 1 if the time and date cannot be found.
 */
-int winCurrentTime(sqlite3_vfs *pVfs, double *prNow){
+static int winCurrentTime(sqlite3_vfs *pVfs, double *prNow){
   int rc;
   sqlite3_int64 i;
   rc = winCurrentTimeInt64(pVfs, &i);