Skip to content

Instantly share code, notes, and snippets.

@yorung
Last active August 29, 2015 14:14
Show Gist options
  • Save yorung/4c036b2e65265dfdfde3 to your computer and use it in GitHub Desktop.
Save yorung/4c036b2e65265dfdfde3 to your computer and use it in GitHub Desktop.
Bind MessageBox to Lua
int MesBox(lua_State *L)
{
const char* str = lua_tostring(L, 1);
MessageBoxA(nullptr, str, "LuaTest", MB_OK);
return 0;
}
void Bind()
{
lua_register(L, "MesBox", MesBox);
}
MesBox("A message from Lua")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment