diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-07-12 20:40:10 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-07-12 20:40:10 +0000 |
commit | f1f08af4d7a1b4bedf55fb25af974276e5eb858c (patch) | |
tree | 70387cab585ac782ae7da679d95991f7403b3e39 /plugins/MirLua/src/stdafx.h | |
parent | 4bf1f71a53fb90e8c87f0e0a19af6e82b280867a (diff) |
MirLua:
- Utf8Decode? functions are returns strings (thx to Mironych)
- added DecodeCustomButtonClickData to m_msg_buttonsbar
- version bump
git-svn-id: http://svn.miranda-ng.org/main/trunk@14546 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/stdafx.h')
-rw-r--r-- | plugins/MirLua/src/stdafx.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/MirLua/src/stdafx.h b/plugins/MirLua/src/stdafx.h index d871d739ea..867d07f7e8 100644 --- a/plugins/MirLua/src/stdafx.h +++ b/plugins/MirLua/src/stdafx.h @@ -95,6 +95,9 @@ LUAMOD_API int (luaopen_m_windows)(lua_State *L); int luaM_print(lua_State *L);
int luaM_atpanic(lua_State *L);
+int luaM_toansi(lua_State *L);
+int luaM_toucs2(lua_State *L);
+
bool luaM_toboolean(lua_State *L, int idx);
WPARAM luaM_towparam(lua_State *L, int idx);
LPARAM luaM_tolparam(lua_State *L, int idx);
|