OLD | NEW |
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 Loading... |
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 |
OLD | NEW |