diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-07-07 13:49:53 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-07-07 13:49:53 +0000 |
commit | 579b92a2f091284839bfa112116ed088dd3b2418 (patch) | |
tree | bb17a0226477f5aacb2d0caf5e5b1ec01f91342c /plugins/MirLua/src/stdafx.h | |
parent | a6849e6952b88ca67f2eac3f1e2adc287246b0a5 (diff) |
MirLua:
- added Utf8DecodeA, Utf8DecodeW and Free to m
- more correct number to boolean in m_genmenu
- version bump
git-svn-id: http://svn.miranda-ng.org/main/trunk@14505 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/stdafx.h')
-rw-r--r-- | plugins/MirLua/src/stdafx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirLua/src/stdafx.h b/plugins/MirLua/src/stdafx.h index 2fbbc83429..d871d739ea 100644 --- a/plugins/MirLua/src/stdafx.h +++ b/plugins/MirLua/src/stdafx.h @@ -95,7 +95,7 @@ LUAMOD_API int (luaopen_m_windows)(lua_State *L); int luaM_print(lua_State *L);
int luaM_atpanic(lua_State *L);
-bool luaM_checkboolean(lua_State *L, int idx);
+bool luaM_toboolean(lua_State *L, int idx);
WPARAM luaM_towparam(lua_State *L, int idx);
LPARAM luaM_tolparam(lua_State *L, int idx);
|