46b2ed80ae
Another nuke! This time, trying to do a client <-> server thing. Also a bit of messing with Lua.
18 lines
293 B
C
18 lines
293 B
C
#pragma once
|
|
|
|
#include <stddef.h> /* size_t */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
#include <lua.h>
|
|
#include <lualib.h>
|
|
#include <lauxlib.h>
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
void common_lua_stack_dump (lua_State*);
|
|
int common_lua_run (lua_State*, const char*, const char*, const size_t);
|