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

class CMLua
{
private:
	lua_State *L;

	void Load();
	void Unload();

public:
	CMLua();
	~CMLua();

	void Reload();

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

#endif //_LUA_CORE_H_