mirror of https://github.com/lua/lua.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
420 B
24 lines
420 B
#ifndef func_h
|
|
#define func_h
|
|
|
|
#include "types.h"
|
|
|
|
/*
|
|
** Header para funcoes.
|
|
*/
|
|
typedef struct TFunc
|
|
{
|
|
struct TFunc *next;
|
|
char marked;
|
|
int size;
|
|
Byte *code;
|
|
int lineDefined;
|
|
char *name1; /* function or method name (or null if main) */
|
|
char *name2; /* object name (or null if not method) */
|
|
char *fileName;
|
|
} TFunc;
|
|
|
|
Long luaI_funccollector (void);
|
|
void luaI_insertfunction (TFunc *f);
|
|
|
|
#endif
|
|
|