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

Side by Side Diff: third_party/sqlite/src/src/sqlite3ext.h

Issue 6835006: Convert to SQLite amalgamation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « third_party/sqlite/src/src/main.c ('k') | third_party/sqlite/src/src/test_autoext.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_ */
OLDNEW
« no previous file with comments | « third_party/sqlite/src/src/main.c ('k') | third_party/sqlite/src/src/test_autoext.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698