Addition of dependencies to the makefile

New make target of "make depend"
Addition of doxygen building ability
Cleanup of docygen comment blocks
Initial telnetd protocol module structure
This commit is contained in:
Mark Riddoch
2013-06-17 14:03:05 +02:00
parent 876af46cdd
commit 1300c5d089
31 changed files with 2284 additions and 147 deletions

View File

@ -18,24 +18,27 @@
* Copyright SkySQL Ab 2013
*/
/*
/**
* @file modules.h Utilities for loading modules
*
* The module interface used within the gateway
*
* @verbatim
* Revision History
*
* Date Who Description
* 13/06/13 Mark Riddoch Initial implementation
*
* @endverbatim
*/
typedef struct modules {
char *module; /* The name of the module */
char *type; /* The module type */
char *version; /* Module version */
void *handle; /* The handle returned by dlopen */
void *modobj; /* The module "object" this is the set of entry points */
char *module; /**< The name of the module */
char *type; /**< The module type */
char *version; /**< Module version */
void *handle; /**< The handle returned by dlopen */
void *modobj; /**< The module "object" this is the set of entry points */
struct modules
*next; /* Next module in the linked list */
*next; /**< Next module in the linked list */
} MODULES;
extern void *load_module(const char *module, const char *type);