summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/mlua.h
blob: d5a2f0c891456c263f2fc7159bdebf9241afe0b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef _LUA_CORE_H_
#define _LUA_CORE_H_

class CMLua
{
private:
	lua_State *L;
	static luaL_Reg coreLib[14];

	void Preload(const char *name, lua_CFunction func);

public:
	CMLua();
	~CMLua();

	void AddPath(const char *path);

	void Load(const char *name);

	static WPARAM GetWParam(lua_State *L, int idx);
	static LPARAM GetLParam(lua_State *L, int idx);

	static int HookEventObjParam(void *obj, WPARAM wParam, LPARAM lParam, LPARAM param);
};

#endif //_LUA_CORE_H_