1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-09 14:21:03 +03:00

Make the multiplexor and the IntArray extensions callable from C++.

FossilOrigin-Name: cbd8fddf3b4cde840279502e1e9b151bb4bd42f0
This commit is contained in:
drh
2012-10-29 14:27:26 +00:00
parent ecf42d52d8
commit 6e227bf3e0
4 changed files with 28 additions and 9 deletions

View File

@@ -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()
**
@@ -88,4 +92,8 @@ extern int sqlite3_multiplex_initialize(const char *zOrigVfsName, int makeDefaul
*/
extern int sqlite3_multiplex_shutdown(void);
#ifdef __cplusplus
} /* End of the 'extern "C"' block */
#endif
#endif