- include api.h instead of individual #includes - moved metatable name to API_TYPE_PROCESS - moved read buffer size to READ_BUF_SIZE
15 lines
230 B
C
15 lines
230 B
C
#ifndef API_H
|
|
#define API_H
|
|
|
|
#include "lua.h"
|
|
#include "lauxlib.h"
|
|
#include "lualib.h"
|
|
|
|
#define API_TYPE_FONT "Font"
|
|
#define API_TYPE_REPLACE "Replace"
|
|
#define API_TYPE_PROCESS "Process"
|
|
|
|
void api_load_libs(lua_State *L);
|
|
|
|
#endif
|