blob: 7b17b34276f5812274eaa1cc09f022498c861b07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <sys/types.h>
/* Forwarded declaration */
struct module_ctx;
typedef struct module_s {
const char *name;
int (*module_init_func)(struct module_ctx *ctx);
} module_t;
extern module_t modules[];
|