blob: 11e9dfc9950f79a44369deb741f930c6d27c6a00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef DICT_SQL_PRIVATE_H
#define DICT_SQL_PRIVATE_H 1
struct sql_dict {
struct dict dict;
pool_t pool;
struct sql_db *db;
const struct dict_sql_settings *set;
};
#endif
|