proto-debuger/protoDebuger/lua_bind.h

15 lines
227 B
C
Raw Permalink Normal View History

2021-04-15 17:13:04 +00:00
#ifndef LUA_BIND_H
#define LUA_BIND_H
extern "C" {
#include "lua.h"
#include "lauxlib.h"
#include "lualib.h"
}
2021-04-16 18:27:32 +00:00
// 在界面中显示数据
2021-04-15 17:13:04 +00:00
int LuaShowData(lua_State *);
2021-04-18 15:16:03 +00:00
int LuaWriteUart(lua_State *vm);
2021-04-15 17:13:04 +00:00
#endif // LUA_BIND_H