summaryrefslogtreecommitdiff
path: root/plugins/MirLua
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-11-06 21:04:23 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-11-06 21:04:23 +0300
commit7f5b2d67d2ea99cbc986f58e57f609fae1aee1f7 (patch)
tree2ad0a3d9c119087918b59e4c80b6d0edbf8afe17 /plugins/MirLua
parent6a1b112fc8813e6d86b4bac52bfb5ea32a39d806 (diff)
MirLua: since we use 64-bit integers, no need to push wparam/lparam as pointers
Diffstat (limited to 'plugins/MirLua')
-rw-r--r--plugins/MirLua/src/Modules/m_core.cpp8
-rw-r--r--plugins/MirLua/src/environment.cpp8
2 files changed, 8 insertions, 8 deletions
diff --git a/plugins/MirLua/src/Modules/m_core.cpp b/plugins/MirLua/src/Modules/m_core.cpp
index 1a250ffccf..90f022a9dc 100644
--- a/plugins/MirLua/src/Modules/m_core.cpp
+++ b/plugins/MirLua/src/Modules/m_core.cpp
@@ -21,12 +21,12 @@ static int HookEventLuaParam(void *obj, WPARAM wParam, LPARAM lParam, LPARAM par
lua_rawgeti(L, LUA_REGISTRYINDEX, ref);
if (wParam)
- lua_pushlightuserdata(L, (void*)wParam);
+ lua_pushinteger(L, wParam);
else
lua_pushnil(L);
if (lParam)
- lua_pushlightuserdata(L, (void*)lParam);
+ lua_pushinteger(L, lParam);
else
lua_pushnil(L);
@@ -122,8 +122,8 @@ INT_PTR CreateServiceFunctionLuaStateParam(void *obj, WPARAM wParam, LPARAM lPar
int ref = param;
lua_rawgeti(L, LUA_REGISTRYINDEX, ref);
- lua_pushlightuserdata(L, (void*)wParam);
- lua_pushlightuserdata(L, (void*)lParam);
+ lua_pushinteger(L, wParam);
+ lua_pushinteger(L, lParam);
luaM_pcall(L, 2, 1);
INT_PTR res = lua_tointeger(L, 1);
diff --git a/plugins/MirLua/src/environment.cpp b/plugins/MirLua/src/environment.cpp
index 24dea9ec58..e0b3ed5344 100644
--- a/plugins/MirLua/src/environment.cpp
+++ b/plugins/MirLua/src/environment.cpp
@@ -58,12 +58,12 @@ static int HookEventEnvParam(void *obj, WPARAM wParam, LPARAM lParam, LPARAM par
lua_rawgeti(env->L, LUA_REGISTRYINDEX, ref);
if (wParam)
- lua_pushlightuserdata(env->L, (void*)wParam);
+ lua_pushinteger(env->L, wParam);
else
lua_pushnil(env->L);
if (lParam)
- lua_pushlightuserdata(env->L, (void*)lParam);
+ lua_pushinteger(env->L, lParam);
else
lua_pushnil(env->L);
@@ -98,8 +98,8 @@ static INT_PTR CreateServiceFunctionEnvParam(void *obj, WPARAM wParam, LPARAM lP
int ref = param;
lua_rawgeti(env->L, LUA_REGISTRYINDEX, ref);
- lua_pushlightuserdata(env->L, (void*)wParam);
- lua_pushlightuserdata(env->L, (void*)lParam);
+ lua_pushinteger(env->L, wParam);
+ lua_pushinteger(env->L, lParam);
luaM_pcall(env->L, 2, 1);
INT_PTR res = lua_tointeger(env->L, 1);