diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2016-02-18 09:13:18 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2016-02-18 09:13:18 +0000 |
commit | 73a0b84498501c1e2907f1cdc5f222f1f400edfd (patch) | |
tree | 0317999b0f7b131b58eed6a25ffe6d2cb3dbe2e8 /plugins/MirLua/Modules/m_popup/src/main.cpp | |
parent | 540ac837514edcd79a64ffaf582ce4d9d5f0e478 (diff) |
MirLua:
- m_msg_buttonsbar moved to separate lua library
- fixed loading of other c modules
git-svn-id: http://svn.miranda-ng.org/main/trunk@16300 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/Modules/m_popup/src/main.cpp')
-rw-r--r-- | plugins/MirLua/Modules/m_popup/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirLua/Modules/m_popup/src/main.cpp b/plugins/MirLua/Modules/m_popup/src/main.cpp index c99ea7c146..288f03c1ca 100644 --- a/plugins/MirLua/Modules/m_popup/src/main.cpp +++ b/plugins/MirLua/Modules/m_popup/src/main.cpp @@ -121,7 +121,7 @@ static luaL_Reg popupApi[] = { NULL, NULL }
};
-LUAMOD_API int luaopen_m_popup(lua_State *L)
+extern "C" LUAMOD_API int luaopen_m_popup(lua_State *L)
{
luaL_newlib(L, popupApi);
|