aboutsummaryrefslogtreecommitdiff
path: root/c/core.h
blob: 82070ffe165a73f54fe2538af6af7d8ff1511966 (plain)
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