diff options
| author | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-02-17 12:34:51 +0100 | 
|---|---|---|
| committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-02-17 13:31:39 +0100 | 
| commit | 70e08d1325b2cdd0e9c16a193cc6ed10d2d21617 (patch) | |
| tree | a6b409a6efed58280c5f9af71ff7fd517873ad4e /plugingui | |
| parent | baed7f32c7608532012a90804629b54e2d8c6f81 (diff) | |
Win32 build fixes.
Diffstat (limited to 'plugingui')
| -rw-r--r-- | plugingui/testmain.cc | 4 | ||||
| -rw-r--r-- | plugingui/tests/resizetest.cc | 4 | ||||
| -rw-r--r-- | plugingui/tests/tabwidgettest.cc | 4 | 
3 files changed, 9 insertions, 3 deletions
| diff --git a/plugingui/testmain.cc b/plugingui/testmain.cc index 07bbe6c..8edfd0a 100644 --- a/plugingui/testmain.cc +++ b/plugingui/testmain.cc @@ -24,7 +24,9 @@   *  along with DrumGizmo; if not, write to the Free Software   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.   */ -#ifdef WIN32 +#include <platform.h> + +#if DG_PLATFORM == DG_PLATFORM_WINDOWS  #define WIN32_LEAN_AND_MEAN  #include <windows.h>  #endif diff --git a/plugingui/tests/resizetest.cc b/plugingui/tests/resizetest.cc index 213cece..2267030 100644 --- a/plugingui/tests/resizetest.cc +++ b/plugingui/tests/resizetest.cc @@ -26,7 +26,9 @@   */  #include <iostream> -#ifdef WIN32 +#include <platform.h> + +#if DG_PLATFORM == DG_PLATFORM_WINDOWS  #define WIN32_LEAN_AND_MEAN  #include <windows.h>  #endif diff --git a/plugingui/tests/tabwidgettest.cc b/plugingui/tests/tabwidgettest.cc index 2ddabd3..e187fee 100644 --- a/plugingui/tests/tabwidgettest.cc +++ b/plugingui/tests/tabwidgettest.cc @@ -26,7 +26,9 @@   */  #include <iostream> -#ifdef WIN32 +#include <platform.h> + +#if DG_PLATFORM == DG_PLATFORM_WINDOWS  #define WIN32_LEAN_AND_MEAN  #include <windows.h>  #endif | 
