mirror of
https://github.com/samba-team/samba.git
synced 2025-11-08 16:23:49 +03:00
changed the prioivate modules API error string are now not spread over all modules but are kept in a single place. This allows a better control of memory and error reporting.
8 lines
111 B
C
8 lines
111 B
C
#include <sqlite3.h>
|
|
|
|
struct lsqlite3_private {
|
|
int trans_count;
|
|
char **options;
|
|
sqlite3 *sqlite;
|
|
};
|