00001
00002
00003
00004
00005
00006
00007 #ifndef lundump_h
00008 #define lundump_h
00009
00010 #include "lobject.h"
00011 #include "lzio.h"
00012
00013
00014
00015 Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff)
00016 ;
00017
00018
00019 int luaU_endianness (void)
00020 ;
00021
00022
00023 void luaU_dump (lua_State* L, const Proto* Main, lua_Chunkwriter w, void* data)
00024 ;
00025
00026
00027
00028 void luaU_print (const Proto* Main)
00029 ;
00030
00031
00032 #define LUA_SIGNATURE "\033Lua"
00033 #define VERSION 0x50
00034 #define VERSION0 0x50
00035
00036
00037
00038 #define TEST_NUMBER ((lua_Number)3.14159265358979323846E7)
00039
00040 #endif