misc/liblua/lundump.h
author dag10 <gottlieb.drew@gmail.com>
Wed, 16 Jan 2013 18:34:43 -0500
changeset 8393 85bd6c7b2641
parent 2812 0a24853de796
child 10017 de822cd3df3a
permissions -rw-r--r--
Can now change theme for static and mission maps. Fixed mission map descriptions that had commas which broke them. Now, you must escape commas in map descriptions. Made bgwidget repaint on animation tick to avoid buffer-not-clearing issue with widgets that change overtop the background leaving a ghost image of the widget's previous state. Generated map is now the default map in the mapconfig widget.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2812
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     1
/*
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     2
** $Id: lundump.h,v 1.37.1.1 2007/12/27 13:02:25 roberto Exp $
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     3
** load precompiled Lua chunks
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     4
** See Copyright Notice in lua.h
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     5
*/
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     6
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     7
#ifndef lundump_h
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     8
#define lundump_h
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     9
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    10
#include "lobject.h"
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    11
#include "lzio.h"
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    12
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    13
/* load one chunk; from lundump.c */
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    14
LUAI_FUNC Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    15
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    16
/* make header; from lundump.c */
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    17
LUAI_FUNC void luaU_header (char* h);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    18
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    19
/* dump one chunk; from ldump.c */
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    20
LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    21
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    22
#ifdef luac_c
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    23
/* print one chunk; from print.c */
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    24
LUAI_FUNC void luaU_print (const Proto* f, int full);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    25
#endif
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    26
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    27
/* for header of binary files -- this is Lua 5.1 */
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    28
#define LUAC_VERSION		0x51
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    29
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    30
/* for header of binary files -- this is the official format */
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    31
#define LUAC_FORMAT		0
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    32
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    33
/* size of header of binary files */
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    34
#define LUAC_HEADERSIZE		12
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    35
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    36
#endif