diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-06-22 14:21:07 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-06-22 14:21:07 +0000 |
commit | 631e22caadf37a547bafccc0f90251621b0bd987 (patch) | |
tree | b83353c9449eb2ef415120304d829f0dca17af07 /plugins/MirLua/src/mlua_console.h | |
parent | 0514092bbe0dfcfa7a091a7a66b4df83be3a7eb9 (diff) |
MirLua: console refactoring
git-svn-id: http://svn.miranda-ng.org/main/trunk@14328 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/mlua_console.h')
-rw-r--r-- | plugins/MirLua/src/mlua_console.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/plugins/MirLua/src/mlua_console.h b/plugins/MirLua/src/mlua_console.h new file mode 100644 index 0000000000..6e82a22dd0 --- /dev/null +++ b/plugins/MirLua/src/mlua_console.h @@ -0,0 +1,15 @@ +#ifndef _LUA_CONSOLE_H_
+#define _LUA_CONSOLE_H_
+
+class CMLuaConsole
+{
+private:
+ lua_State *L;
+ HANDLE hConsole;
+
+public:
+ CMLuaConsole(lua_State *L);
+ ~CMLuaConsole();
+};
+
+#endif //_LUA_CONSOLE_H_
\ No newline at end of file |