2. common/include/skyeye_module.h
16 typedef struct skyeye_module_s{
17 /*
18 * the name for module, should defined in module as an varai ble.
19 */
20 char* module_name;
21 /*
22 * the library name that contains module
23 */
24 char* filename;
25 /*
26 * the handler for module operation.
27 */
28 void* handler;
29 /*
30 * next node of module linklist.
31 */
32 struct skyeye_module_s *next;
33 }skyeye_module_t;