summaryrefslogtreecommitdiff
path: root/libs/lua/LuaBridge/detail/ClassInfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/lua/LuaBridge/detail/ClassInfo.h')
-rw-r--r--libs/lua/LuaBridge/detail/ClassInfo.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/libs/lua/LuaBridge/detail/ClassInfo.h b/libs/lua/LuaBridge/detail/ClassInfo.h
index 8639dbec52..2a0ab001fd 100644
--- a/libs/lua/LuaBridge/detail/ClassInfo.h
+++ b/libs/lua/LuaBridge/detail/ClassInfo.h
@@ -36,6 +36,15 @@ template <class T>
class ClassInfo
{
public:
+#ifdef PLATFORM_WINDOWS
+ /* static symbols on windows (even identical symbols) are not
+ * mapped to the same address when mixing .dll + .exe.
+ * the implementation is moved to libardour/gtk2_ardour.
+ */
+ static void const* getStaticKey ();
+ static void const* getClassKey ();
+ static void const* getConstKey ();
+#else
/** Get the key for the static table.
The static table holds the static data members, static properties, and
@@ -69,5 +78,6 @@ public:
static char value;
return &value;
}
+#endif
};