1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-15 11:41:13 +03:00

Moved check and define for OS_WINCE from os_win.c to os.h (with the other OS_* defines). This allows OS_WINCE to be available for mutex_w32.c which is included earlier than os_win.c in the almagamation. (CVS 5176)

FossilOrigin-Name: ad6a782e7c408f6c3ebff5f2715c629b75c8002d
This commit is contained in:
shane
2008-05-29 03:54:26 +00:00
parent c9ded4c62e
commit 712d6f9dad
4 changed files with 21 additions and 15 deletions

View File

@@ -12,7 +12,7 @@
**
** This file contains code that is specific to windows.
**
** $Id: os_win.c,v 1.122 2008/05/16 04:51:55 danielk1977 Exp $
** $Id: os_win.c,v 1.123 2008/05/29 03:54:27 shane Exp $
*/
#include "sqliteInt.h"
#if OS_WIN /* This file is used for windows only */
@@ -66,11 +66,8 @@
** Determine if we are dealing with WindowsCE - which has a much
** reduced API.
*/
#if defined(_WIN32_WCE)
# define OS_WINCE 1
#if defined(OS_WINCE)
# define AreFileApisANSI() 1
#else
# define OS_WINCE 0
#endif
/*