diff options
Diffstat (limited to 'func.h')
-rw-r--r-- | func.h | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -0,0 +1,20 @@ | |||
1 | #ifndef func_h | ||
2 | #define func_h | ||
3 | |||
4 | #include "types.h" | ||
5 | |||
6 | /* | ||
7 | ** Header para funcoes. | ||
8 | */ | ||
9 | typedef struct TFunc | ||
10 | { | ||
11 | struct TFunc *next; | ||
12 | char marked; | ||
13 | int size; | ||
14 | Byte *code; | ||
15 | } TFunc; | ||
16 | |||
17 | Long luaI_funccollector (void); | ||
18 | void luaI_insertfunction (TFunc *f); | ||
19 | |||
20 | #endif | ||