1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef __MAL_CORE__ #define __MAL_CORE__ #include <glib.h> // namespace of type functions typedef struct { char *name; void *(*func)(void*); int arg_cnt; } core_ns_entry; extern core_ns_entry core_ns[56]; #endif