| OLD | NEW |
| 1 /* | 1 /* |
| 2 ** 2006 June 7 | 2 ** 2006 June 7 |
| 3 ** | 3 ** |
| 4 ** The author disclaims copyright to this source code. In place of | 4 ** The author disclaims copyright to this source code. In place of |
| 5 ** a legal notice, here is a blessing: | 5 ** a legal notice, here is a blessing: |
| 6 ** | 6 ** |
| 7 ** May you do good and not evil. | 7 ** May you do good and not evil. |
| 8 ** May you find forgiveness for yourself and forgive others. | 8 ** May you find forgiveness for yourself and forgive others. |
| 9 ** May you share freely, never taking more than you give. | 9 ** May you share freely, never taking more than you give. |
| 10 ** | 10 ** |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 #define sqlite3_result_zeroblob sqlite3_api->result_zeroblob | 365 #define sqlite3_result_zeroblob sqlite3_api->result_zeroblob |
| 366 #define sqlite3_result_error_code sqlite3_api->result_error_code | 366 #define sqlite3_result_error_code sqlite3_api->result_error_code |
| 367 #define sqlite3_test_control sqlite3_api->test_control | 367 #define sqlite3_test_control sqlite3_api->test_control |
| 368 #define sqlite3_randomness sqlite3_api->randomness | 368 #define sqlite3_randomness sqlite3_api->randomness |
| 369 #define sqlite3_context_db_handle sqlite3_api->context_db_handle | 369 #define sqlite3_context_db_handle sqlite3_api->context_db_handle |
| 370 #define sqlite3_extended_result_codes sqlite3_api->extended_result_codes | 370 #define sqlite3_extended_result_codes sqlite3_api->extended_result_codes |
| 371 #define sqlite3_limit sqlite3_api->limit | 371 #define sqlite3_limit sqlite3_api->limit |
| 372 #define sqlite3_next_stmt sqlite3_api->next_stmt | 372 #define sqlite3_next_stmt sqlite3_api->next_stmt |
| 373 #define sqlite3_sql sqlite3_api->sql | 373 #define sqlite3_sql sqlite3_api->sql |
| 374 #define sqlite3_status sqlite3_api->status | 374 #define sqlite3_status sqlite3_api->status |
| 375 #endif /* SQLITE_CORE */ |
| 375 | 376 |
| 376 #define SQLITE_EXTENSION_INIT1 const sqlite3_api_routines *sqlite3_api = 0; | 377 #define SQLITE_EXTENSION_INIT1 const sqlite3_api_routines *sqlite3_api = 0; |
| 377 #define SQLITE_EXTENSION_INIT2(v) sqlite3_api = v; | 378 #define SQLITE_EXTENSION_INIT2(v) sqlite3_api = v; |
| 378 | 379 |
| 379 #else | |
| 380 | |
| 381 #define SQLITE_EXTENSION_INIT1 | |
| 382 #define SQLITE_EXTENSION_INIT2(v) | |
| 383 | |
| 384 #endif /* SQLITE_CORE */ | |
| 385 | |
| 386 #endif /* _SQLITE3EXT_H_ */ | 380 #endif /* _SQLITE3EXT_H_ */ |
| OLD | NEW |