You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef __WXMPPD_MODULE_H
|
|
# define __WXMPPD_MODULE_H
|
|
|
|
typedef int * (*funcptr) ();
|
|
|
|
typedef struct _wxmppd_module_data_t {
|
|
char *name;
|
|
char *description;
|
|
funcptr *load_func;
|
|
} wxmppd_module_data_t;
|
|
|
|
#endif /* __WXMPPD_MODULE_H */
|