|
From: Lasse Kärkkäi. <tr...@us...> - 2009-10-10 05:05:38
|
Module: performous Branch: master Commit: 87029ea410e1de451d3e5382f1f321b8ca1b22bc Author: Lasse Karkkainen <tro...@tr...> Date: Sat Oct 10 08:03:26 2009 +0300 This might actually fix it on Windows, needs testing. --- libs/libda/src/audio.cpp | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/libs/libda/src/audio.cpp b/libs/libda/src/audio.cpp index 4f29b39..3bd843a 100644 --- a/libs/libda/src/audio.cpp +++ b/libs/libda/src/audio.cpp @@ -1,5 +1,7 @@ +#define BUILDING_DLL // So that we get dllexports everywhere instead of dllimports (this is some Windows crap) #include <libda/audio_dev.hpp> -#include <plugin++/dllhelper.hpp> +#undef BUILDING_DLL + #include <plugin++/loader.hpp> #include <ostream> #include <limits> |