1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Add back in some #includes that were removed incorrectly by the

previous check-in.

FossilOrigin-Name: 718905367ff3f86a449c2c27f724089ba31dea3a
This commit is contained in:
drh
2012-03-01 19:14:13 +00:00
parent 815aac8e0f
commit 11de93360f
3 changed files with 26 additions and 7 deletions

View File

@@ -65,6 +65,25 @@
# endif
#endif
#if SQLITE_OS_WIN
# include <windows.h>
#endif
#if SQLITE_OS_OS2
# if (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ >= 3) && defined(OS2_HIGH_MEMORY)
# include <os2safe.h> /* has to be included before os2.h for linking to work */
# endif
# define INCL_DOSDATETIME
# define INCL_DOSFILEMGR
# define INCL_DOSERRORS
# define INCL_DOSMISC
# define INCL_DOSPROCESS
# define INCL_DOSMODULEMGR
# define INCL_DOSSEMAPHORES
# include <os2.h>
# include <uconv.h>
#endif
/*
** Determine if we are dealing with Windows NT.
**