Move module object inside MODULE_INFO

This allows modules to only expose one entry point with a consistent
signature. In the future, this could be used to implement declarations of
module parameters.
This commit is contained in:
Markus Mäkelä
2017-01-03 14:04:20 +02:00
parent 6c53999c97
commit ae0577c695
53 changed files with 1346 additions and 1483 deletions

View File

@ -86,6 +86,7 @@ typedef struct
MODULE_VERSION api_version;
const char *description;
const char *version;
void *module_object;
} MODULE_INFO;
MXS_END_DECLS