1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-01 06:27:03 +03:00

Add an 'extern "C"' block to header file sqlite3userauth.h.

FossilOrigin-Name: ffd61fb449a510b2fc90caf86b266733051cc365
This commit is contained in:
dan
2017-02-25 20:57:46 +00:00
parent 5328181db1
commit 70cdf38232
3 changed files with 15 additions and 7 deletions

View File

@ -21,6 +21,10 @@
*/
#ifdef SQLITE_USER_AUTHENTICATION
#ifdef __cplusplus
extern "C" {
#endif
/*
** If a database contains the SQLITE_USER table, then the
** sqlite3_user_authenticate() interface must be invoked with an
@ -85,4 +89,8 @@ int sqlite3_user_delete(
const char *zUsername /* Username to remove */
);
#ifdef __cplusplus
} /* end of the 'extern "C"' block */
#endif
#endif /* SQLITE_USER_AUTHENTICATION */