You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
338 B
16 lines
338 B
#include "module.h" |
|
|
|
int wxmppd_mod_users_sqlite3_load(funcptr *); |
|
|
|
const wxmppd_module_data_t module_data = { |
|
"users-sqlite3", |
|
"SQLite3 storage module for user data storage", |
|
(funcptr)wxmppd_mod_users_sqlite3_load, |
|
}; |
|
|
|
int |
|
wxmppd_mod_users_sqlite3_load(funcptr *global_functions) |
|
{ |
|
/* Register user storage extension "sqlite3" */ |
|
} |
|
|
|
|