aboutsummaryrefslogtreecommitdiff
path: root/func.h
blob: 2723180f0ee22e99b44ac31df364ceb1504049df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef func_h
#define func_h

#include "types.h"
#include "lua.h"

/*
** Header para funcoes.
*/
typedef struct TFunc
{
  struct TFunc	*next;
  char		marked;
  int		size;
  Byte		*code;
  int		lineDefined;
  char		*fileName;
} TFunc;

Long luaI_funccollector (void);
void luaI_insertfunction (TFunc *f);


#endif