#include <stdio.h>
#include <string.h>
#include <lua.h>
#include <lauxlib.h>
#include <lualib.h>
int main (void) {
char buff[256];
int error;
lua_State *L = lua_open(); /* opens Lua */
luaL_openlibs(L);
while (fgets(buff, sizeof(buff), stdin) != NULL) {
error = luaL_loadbuffer(L, buff, strlen(buff), "line") ||
lua_pcall(L, 0, 0, 0);
if (error) {
fprintf(stderr, "%s", lua_tostring(L, -1));
lua_pop(L, 1); /* pop error message from the stack */
}
}
lua_close(L);
return 0;
}
Похоже, что распространяется несколько ошибок, таких как:
ошибка LNK2019: неразрешенный внешний символ "char const * __cdecl lua_tolstring (struct lua_State *, int, unsigned int *)" (? Lua_tolstring @@ YAPBDPAUlua_State @@ HPAI @ Z), указанный в функции _main main.obj
Что не так?