mirror of
https://github.com/cesanta/mongoose.git
synced 2025-01-07 21:05:29 +08:00
20 lines
337 B
C
20 lines
337 B
C
|
#include <stdio.h>
|
||
|
|
||
|
#include "lua.h"
|
||
|
#include "lauxlib.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;
|
||
|
}
|