#include <module.h>

Data Fields | |
| const char | buildopt_sum [33] |
| const char * | description |
| unsigned int | flags |
| const char * | key |
| enum ast_module_load_result(* | load )(void) |
| const char * | name |
| int(* | reload )(void) |
| struct ast_module * | self |
| int(* | unload )(void) |
Definition at line 185 of file module.h.
| const char buildopt_sum[33] |
The value of AST_BUILDOPT_SUM when this module was compiled
Definition at line 210 of file module.h.
Referenced by inspect_module().
| const char* description |
Definition at line 198 of file module.h.
Referenced by ast_module_reload(), ast_update_module_list(), inspect_module(), and load_resource().
| const char* key |
This holds the ASTERISK_GPL_KEY, signifiying that you agree to the terms of the Asterisk license as stated in the ASTERISK_GPL_KEY. Your module will not load if it does not return the EXACT key string.
Definition at line 206 of file module.h.
Referenced by inspect_module().
| enum ast_module_load_result(* load)(void) |
Referenced by load_resource().
| const char* name |
| int(* reload)(void) |
Referenced by ast_module_helper(), and ast_module_reload().
struct ast_module* self [read] |
The 'self' pointer for a module; it will be set by the loader before it calls the module's load_module() entrypoint, and used by various other macros that need to identify the module.
Definition at line 193 of file module.h.
Referenced by ast_module_register().
| int(* unload)(void) |
Referenced by ast_module_shutdown(), and ast_unload_resource().
1.5.5