Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: third_party/sqlite/sqlite-src-3100200/ext/async/sqlite3async.h

Issue 1610543003: [sql] Import reference version of SQLite 3.10.2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 1
2 #ifndef __SQLITEASYNC_H_ 2 #ifndef __SQLITEASYNC_H_
3 #define __SQLITEASYNC_H_ 1 3 #define __SQLITEASYNC_H_ 1
4 4
5 /* 5 /*
6 ** Make sure we can call this stuff from C++. 6 ** Make sure we can call this stuff from C++.
7 */ 7 */
8 #ifdef __cplusplus 8 #ifdef __cplusplus
9 extern "C" { 9 extern "C" {
10 #endif 10 #endif
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 */ 214 */
215 #define SQLITEASYNC_HALT_NEVER 0 /* Never halt (default value) */ 215 #define SQLITEASYNC_HALT_NEVER 0 /* Never halt (default value) */
216 #define SQLITEASYNC_HALT_NOW 1 /* Halt as soon as possible */ 216 #define SQLITEASYNC_HALT_NOW 1 /* Halt as soon as possible */
217 #define SQLITEASYNC_HALT_IDLE 2 /* Halt when write-queue is empty */ 217 #define SQLITEASYNC_HALT_IDLE 2 /* Halt when write-queue is empty */
218 218
219 #ifdef __cplusplus 219 #ifdef __cplusplus
220 } /* End of the 'extern "C"' block */ 220 } /* End of the 'extern "C"' block */
221 #endif 221 #endif
222 #endif /* ifndef __SQLITEASYNC_H_ */ 222 #endif /* ifndef __SQLITEASYNC_H_ */
223 223
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698