diff options
author | George Hazan <ghazan@miranda.im> | 2019-11-06 21:04:23 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-11-06 21:04:23 +0300 |
commit | 7f5b2d67d2ea99cbc986f58e57f609fae1aee1f7 (patch) | |
tree | 2ad0a3d9c119087918b59e4c80b6d0edbf8afe17 /plugins/MirLua/src/Modules | |
parent | 6a1b112fc8813e6d86b4bac52bfb5ea32a39d806 (diff) |
MirLua: since we use 64-bit integers, no need to push wparam/lparam as pointers
Diffstat (limited to 'plugins/MirLua/src/Modules')
-rw-r--r-- | plugins/MirLua/src/Modules/m_core.cpp | 8 |
1 files changed, 4 insertions, 4 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); |