OLD | NEW |
1 /* | 1 /* |
2 ** 2001 September 15 | 2 ** 2001 September 15 |
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 6459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6470 void (*xDelUser)(void *); /* Called by SQLite to clean up pUser */ | 6470 void (*xDelUser)(void *); /* Called by SQLite to clean up pUser */ |
6471 }; | 6471 }; |
6472 | 6472 |
6473 | 6473 |
6474 #ifdef __cplusplus | 6474 #ifdef __cplusplus |
6475 } /* end of the 'extern "C"' block */ | 6475 } /* end of the 'extern "C"' block */ |
6476 #endif | 6476 #endif |
6477 | 6477 |
6478 #endif /* ifndef _SQLITE3RTREE_H_ */ | 6478 #endif /* ifndef _SQLITE3RTREE_H_ */ |
6479 | 6479 |
| 6480 #ifdef __cplusplus |
| 6481 extern "C" { |
| 6482 #endif |
| 6483 |
| 6484 /* Fault in page cache for db. See http://crbug.com/95527 . |
| 6485 ** *pnTouched will accumulate the number of bytes represented by the |
| 6486 ** touched pages. */ |
| 6487 int sqlite3_95527(sqlite3 *db, unsigned int *pnTouched); |
| 6488 |
| 6489 /* Let our code know that it's safe to call the function. */ |
| 6490 #define HAS_SQLITE3_95527 |
| 6491 |
| 6492 #ifdef __cplusplus |
| 6493 } /* end of the 'extern "C"' block */ |
| 6494 #endif |
OLD | NEW |