diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2016-04-18 17:02:29 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2016-04-18 17:02:29 +0000 |
commit | 6409436d74e5831d362a4e4a102f4ed5527c4562 (patch) | |
tree | 876b696f9679a617fa64bec654cb55a9fa3ae884 /plugins/MirLua/src/stdafx.h | |
parent | cb07641dfb24d64306b3c473990622d0c653e567 (diff) |
MirLua: returned some lua types support as lparam/wparam
git-svn-id: http://svn.miranda-ng.org/main/trunk@16715 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/stdafx.h')
-rw-r--r-- | plugins/MirLua/src/stdafx.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/MirLua/src/stdafx.h b/plugins/MirLua/src/stdafx.h index 921d2c70c4..0bd6712d48 100644 --- a/plugins/MirLua/src/stdafx.h +++ b/plugins/MirLua/src/stdafx.h @@ -115,10 +115,9 @@ int luaM_toucs2(lua_State *L); int luaM_topointer(lua_State *L);
int luaM_tonumber(lua_State *L);
-int luaM_interpolate(lua_State *L);
+WPARAM luaM_tomparam(lua_State *L, int idx);
-WPARAM luaM_towparam(lua_State *L, int idx);
-LPARAM luaM_tolparam(lua_State *L, int idx);
+int luaM_interpolate(lua_State *L);
bool luaM_toboolean(lua_State *L, int idx);
|