details (for regularity)
This commit is contained in:
7
lmem.h
7
lmem.h
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
** $Id: lmem.h,v 1.4 1997/12/01 20:30:44 roberto Exp roberto $
|
** $Id: lmem.h,v 1.5 1997/12/17 20:48:58 roberto Exp roberto $
|
||||||
** Interface to Memory Manager
|
** Interface to Memory Manager
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
@@ -8,10 +8,7 @@
|
|||||||
#define lmem_h
|
#define lmem_h
|
||||||
|
|
||||||
|
|
||||||
#ifndef NULL
|
#include <stdlib.h>
|
||||||
#define NULL 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
/* memory error messages */
|
/* memory error messages */
|
||||||
#define codeEM "code size overflow"
|
#define codeEM "code size overflow"
|
||||||
|
|||||||
8
lua.h
8
lua.h
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
** $Id: lua.h,v 1.23 1998/06/18 16:51:53 roberto Exp roberto $
|
** $Id: lua.h,v 1.24 1998/08/21 17:43:44 roberto Exp roberto $
|
||||||
** Lua - An Extensible Extension Language
|
** Lua - An Extensible Extension Language
|
||||||
** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
|
** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
|
||||||
** e-mail: lua@tecgraf.puc-rio.br
|
** e-mail: lua@tecgraf.puc-rio.br
|
||||||
@@ -20,12 +20,12 @@
|
|||||||
|
|
||||||
#define LUA_ANYTAG (-1)
|
#define LUA_ANYTAG (-1)
|
||||||
|
|
||||||
typedef void (*lua_CFunction) (void);
|
|
||||||
typedef unsigned int lua_Object;
|
|
||||||
|
|
||||||
typedef struct lua_State lua_State;
|
typedef struct lua_State lua_State;
|
||||||
extern lua_State *lua_state;
|
extern lua_State *lua_state;
|
||||||
|
|
||||||
|
typedef void (*lua_CFunction) (void);
|
||||||
|
typedef unsigned int lua_Object;
|
||||||
|
|
||||||
void lua_open (void);
|
void lua_open (void);
|
||||||
void lua_close (void);
|
void lua_close (void);
|
||||||
lua_State *lua_setstate (lua_State *st);
|
lua_State *lua_setstate (lua_State *st);
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
** $Id: lundump.c,v 1.10 1998/06/25 15:50:09 lhf Exp $
|
** $Id: lundump.c,v 1.4 1998/06/25 16:48:44 roberto Exp roberto $
|
||||||
** load bytecodes from files
|
** load bytecodes from files
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user