Skip to content
Snippets Groups Projects
Commit a3b568f4 authored by Sergey Lyubka's avatar Sergey Lyubka
Browse files

removed lua_ddl.c

parent 75770aec
No related branches found
No related tags found
No related merge requests found
#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;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment