handmade/include/lib_lua_common.h
Bubblegumdrop 9e957d466f Client and Server tweaks. This commit breaks the Client.
Server listens correctly with threads and stdin reader thread.

Client does nothing currently gutting UDP_Write for a UDPbase class
introduced in this commit.
2022-01-08 18:59:40 -05:00

18 lines
298 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);