Wuyx
2017-01-04 06f1afda3a26e7c24f192d9615e27d6ba19724f7
commit | author | age
6e1425 1 //  Created by ProbablyInteractive.
H 2 //  Copyright 2009 Probably Interactive. All rights reserved.
3
4 #import <Foundation/Foundation.h>
5 //#import "lua.h"
6 #import <lua/lua.h>
7
8 #define WAX_VERSION 0.93
9
10 void wax_setup();
11 int wax_start(char *initScript, lua_CFunction extensionFunctions, ...);
12 void wax_startWithServer();
13 void wax_end();
14
15 lua_State *wax_currentLuaState();
16
17 void luaopen_wax(lua_State *L);