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