mirror of
https://github.com/kanaka/mal.git
synced 2024-11-13 11:23:59 +03:00
4c14a8b835
Issue #166.
16 lines
229 B
C
16 lines
229 B
C
#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[58];
|
|
|
|
#endif
|