Addition of global Makefile

First example external module, testroute, has been added. This serves more as an example than a real router
Updated module loading to used fixed GetModuleObject route and addition of ModuleInit routine
This commit is contained in:
Mark Riddoch
2013-06-14 11:51:54 +02:00
parent 61cf0c6187
commit 3b86c93adf
8 changed files with 301 additions and 4 deletions

View File

@ -38,7 +38,7 @@ typedef struct modules {
*next; /* Next module in the linked list */
} MODULES;
extern void *load_module(const char *module, const char *type, const char *entry);
extern void *load_module(const char *module, const char *type);
extern void unload_module(const char *module);
extern void printModules();
#endif