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

Add Win32 support to the internal threads interface. Also, add several asserts and fix a few typos.

FossilOrigin-Name: 793195d37109c75eba84f7190c8fe0b8722f76f7
This commit is contained in:
mistachkin
2012-07-21 22:49:08 +00:00
parent f51446a38c
commit da0e47109e
5 changed files with 103 additions and 18 deletions

View File

@@ -3314,4 +3314,11 @@ SQLITE_EXTERN void (*sqlite3IoTrace)(const char*,...);
int sqlite3ThreadCreate(SQLiteThread**,void*(*)(void*),void*);
int sqlite3ThreadJoin(SQLiteThread*, void**);
/*
** Win32 interface
*/
#if SQLITE_OS_WIN
DWORD sqlite3Win32Wait(HANDLE hObject);
#endif
#endif /* _SQLITEINT_H_ */