summaryrefslogtreecommitdiff
path: root/plugins/ExternalAPI/m_lua.h
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2016-04-04 08:39:22 +0000
committerAlexander Lantsev <aunsane@gmail.com>2016-04-04 08:39:22 +0000
commite1110157f8c2989a58aa12ddeef91669525d188f (patch)
tree23cd9c6c845c5e38659a072457566d7a5fe7e79d /plugins/ExternalAPI/m_lua.h
parente6dce54eeeedb43855b694c921b97c5119deef32 (diff)
MirLua: m_toptoolbar moved to separate project
git-svn-id: http://svn.miranda-ng.org/main/trunk@16583 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ExternalAPI/m_lua.h')
-rw-r--r--plugins/ExternalAPI/m_lua.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/plugins/ExternalAPI/m_lua.h b/plugins/ExternalAPI/m_lua.h
new file mode 100644
index 0000000000..6bf0ccc051
--- /dev/null
+++ b/plugins/ExternalAPI/m_lua.h
@@ -0,0 +1,43 @@
+#ifndef _M_LUA_H_
+#define _M_LUA_H_
+
+#include <lua.hpp>
+
+static __inline WPARAM luaM_towparam(lua_State *L, int idx)
+{
+ switch (lua_type(L, idx))
+ {
+ case LUA_TBOOLEAN:
+ return lua_toboolean(L, idx);
+ case LUA_TNUMBER:
+ return lua_tonumber(L, idx);
+ case LUA_TSTRING:
+ return (WPARAM)lua_tostring(L, idx);
+ break;
+ case LUA_TUSERDATA:
+ case LUA_TLIGHTUSERDATA:
+ return (WPARAM)lua_touserdata(L, idx);
+ default:
+ return NULL;
+ }
+}
+
+static __inline LPARAM luaM_tolparam(lua_State *L, int idx)
+{
+ switch (lua_type(L, idx))
+ {
+ case LUA_TBOOLEAN:
+ return lua_toboolean(L, idx);
+ case LUA_TNUMBER:
+ return lua_tonumber(L, idx);
+ case LUA_TSTRING:
+ return (LPARAM)lua_tostring(L, idx);
+ case LUA_TUSERDATA:
+ case LUA_TLIGHTUSERDATA:
+ return (LPARAM)lua_touserdata(L, idx);
+ default:
+ return NULL;
+ }
+}
+
+#endif //_M_LUA_H_