| Index: third_party/sqlite/src/src/test_multiplex.h
|
| diff --git a/third_party/sqlite/src/src/test_multiplex.h b/third_party/sqlite/src/src/test_multiplex.h
|
| index ec1ba9bb2115faf4a273455edad7819508f2c9cb..d973e4af271d9008c1162847315436a30157030e 100644
|
| --- a/third_party/sqlite/src/src/test_multiplex.h
|
| +++ b/third_party/sqlite/src/src/test_multiplex.h
|
| @@ -46,6 +46,10 @@
|
| #define MULTIPLEX_CTRL_SET_CHUNK_SIZE 214015
|
| #define MULTIPLEX_CTRL_SET_MAX_CHUNKS 214016
|
|
|
| +#ifdef __cplusplus
|
| +extern "C" {
|
| +#endif
|
| +
|
| /*
|
| ** CAPI: Initialize the multiplex VFS shim - sqlite3_multiplex_initialize()
|
| **
|
| @@ -86,6 +90,10 @@ extern int sqlite3_multiplex_initialize(const char *zOrigVfsName, int makeDefaul
|
| ** THIS ROUTINE IS NOT THREADSAFE. Call this routine exactly once while
|
| ** shutting down in order to free all remaining multiplex groups.
|
| */
|
| -extern int sqlite3_multiplex_shutdown(void);
|
| +extern int sqlite3_multiplex_shutdown(int eForce);
|
|
|
| +#ifdef __cplusplus
|
| +} /* End of the 'extern "C"' block */
|
| #endif
|
| +
|
| +#endif /* _TEST_MULTIPLEX_H */
|
|
|