mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-25 03:29:00 +08:00
18 lines
321 B
C
18 lines
321 B
C
#include <stdio.h>
|
|
#include "lua_5.2.1.h"
|
|
|
|
static int smile(lua_State *L) {
|
|
(void) L; // Unused
|
|
printf("%s\n", ":-)");
|
|
return 0;
|
|
}
|
|
|
|
int LUA_API luaopen_lua_dll(lua_State *L) {
|
|
static const struct luaL_Reg api[] = {
|
|
{"smile", smile},
|
|
{NULL, NULL},
|
|
};
|
|
luaL_openlib(L, "lua_dll", api, 0);
|
|
return 1;
|
|
}
|