diff options
author | Lua Team <team@lua.org> | 2005-05-20 12:00:00 +0000 |
---|---|---|
committer | repogen <> | 2005-05-20 12:00:00 +0000 |
commit | bf6b5550cdfbc0c4a3a4577776ad76628d80718e (patch) | |
tree | d714ef8ac5581536c0f8bb2c8e90e2b8207799b1 /src/lundump.h | |
parent | e6ddfd3b09c0a3727afc773029c323a3defe50fa (diff) | |
download | lua-github-5.1-work6.tar.gz |
Lua 5.1-work65.1-work6
Diffstat (limited to 'src/lundump.h')
-rw-r--r-- | src/lundump.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lundump.h b/src/lundump.h index 1a7b897b..924cfb01 100644 --- a/src/lundump.h +++ b/src/lundump.h @@ -1,5 +1,5 @@ /* -** $Id: lundump.h,v 1.34 2004/11/25 09:31:41 lhf Exp $ +** $Id: lundump.h,v 1.35 2005/05/12 00:26:50 lhf Exp $ ** load pre-compiled Lua chunks ** See Copyright Notice in lua.h */ @@ -11,16 +11,16 @@ #include "lzio.h" /* load one chunk; from lundump.c */ -Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char *name); +LUAI_FUNC Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char *name); /* find byte order; from lundump.c */ -int luaU_endianness (void); +LUAI_FUNC int luaU_endianness (void); /* dump one chunk; from ldump.c */ -int luaU_dump (lua_State* L, const Proto* f, lua_Chunkwriter w, void* data, int strip); +LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Chunkwriter w, void* data, int strip); /* print one chunk; from print.c */ -void luaU_print (const Proto* f, int full); +LUAI_FUNC void luaU_print (const Proto* f, int full); /* for header of binary files -- this is Lua 5.1 */ #define VERSION 0x51 |