diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2016-06-04 18:01:23 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2016-06-04 18:01:23 +0000 |
commit | 1c96560f8bc136fa2930dd67f538f65c02a1c350 (patch) | |
tree | e0ecd365094b4aff09c6fe8cab228d371ce68d05 /plugins/MirLua/src/stdafx.h | |
parent | 420403dedffee8a10336e450337d30e1f25336b2 (diff) |
MirLua:
- fixed DBEVENTINFO metatable
- BLOB metatable temporary moved to utils
- fixed tonumber function
git-svn-id: http://svn.miranda-ng.org/main/trunk@16913 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/stdafx.h')
-rw-r--r-- | plugins/MirLua/src/stdafx.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/MirLua/src/stdafx.h b/plugins/MirLua/src/stdafx.h index d14e5bd116..461dbdfc7a 100644 --- a/plugins/MirLua/src/stdafx.h +++ b/plugins/MirLua/src/stdafx.h @@ -96,12 +96,17 @@ LUAMOD_API int (luaopen_m_sounds)(lua_State *L); /* utils */
+#define MT_BLOB "BLOB"
+int (luaopen_m_utils)(lua_State *L);
+
extern HANDLE hNetlib;
void Log(const char *format, ...);
void Log(const wchar_t *format, ...);
void ShowNotification(const char *caption, const char *message, int flags = 0, MCONTACT hContact = NULL);
+void ObsoleteMethod(lua_State *L, const char *message);
+
int luaM_atpanic(lua_State *L);
int luaM_pcall(lua_State *L, int n = 0, int r = 0);
@@ -123,6 +128,4 @@ void InitIcons(); HICON GetIcon(int iconId);
HANDLE GetIconHandle(int iconId);
-void ObsoleteMethod(lua_State *L, const char *message);
-
#endif //_COMMON_H_
|