summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_protocol_wine/opentrack-wrapper-wine-posix.cxx
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2014-09-22 15:25:19 +0200
committerStanislaw Halik <sthalik@misaki.pl>2014-09-24 19:33:34 +0200
commit6310488fda7a85b0f330e4ca6c7781873fe5b582 (patch)
treeff72c7be5d65469aa80015ff3b6202482dbee7be /ftnoir_protocol_wine/opentrack-wrapper-wine-posix.cxx
parentb236bf6a23172a5008d0e715c913e44fb69d5e31 (diff)
fix Wine bitrot rather than only saying so
name mangling has issues so partial revert
Diffstat (limited to 'ftnoir_protocol_wine/opentrack-wrapper-wine-posix.cxx')
-rw-r--r--ftnoir_protocol_wine/opentrack-wrapper-wine-posix.cxx12
1 files changed, 4 insertions, 8 deletions
diff --git a/ftnoir_protocol_wine/opentrack-wrapper-wine-posix.cxx b/ftnoir_protocol_wine/opentrack-wrapper-wine-posix.cxx
index ea01ff03..010c4440 100644
--- a/ftnoir_protocol_wine/opentrack-wrapper-wine-posix.cxx
+++ b/ftnoir_protocol_wine/opentrack-wrapper-wine-posix.cxx
@@ -1,12 +1,8 @@
#define OPENTRACK_COMPAT_BUNDLED
+#ifdef _WIN32
+# undef _WIN32
+#endif
+
#define PortableLockedShm ShmPosix
-#undef _WIN32
-#include "ftnoir_protocol_ft/fttypes.h"
-#include "wine-shm.h"
#include "compat/compat.h"
#include "compat/compat.cpp"
-
-ptr<BasePortableLockedShm> make_shm_posix()
-{
- return std::make_shared<ShmPosix>(FREETRACK_HEAP, FREETRACK_MUTEX, sizeof(FTHeap));
-}