aboutsummaryrefslogtreecommitdiff
path: root/backends/taskbar/win32/win32-taskbar.cpp
diff options
context:
space:
mode:
authorJulien2011-06-16 11:06:05 -0400
committerJulien2011-06-16 14:23:30 -0400
commit5dff6c2c081756feb61fd273da903019e33363a1 (patch)
tree63548015397e09dee0d65de450142040ee43dfcf /backends/taskbar/win32/win32-taskbar.cpp
parent96148345483dd0e7667f0b7541d5956524181dd5 (diff)
downloadscummvm-rg350-5dff6c2c081756feb61fd273da903019e33363a1.tar.gz
scummvm-rg350-5dff6c2c081756feb61fd273da903019e33363a1.tar.bz2
scummvm-rg350-5dff6c2c081756feb61fd273da903019e33363a1.zip
BACKENDS: Allow use of excluded functions needed by Win32TaskbarManager
Diffstat (limited to 'backends/taskbar/win32/win32-taskbar.cpp')
-rw-r--r--backends/taskbar/win32/win32-taskbar.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/backends/taskbar/win32/win32-taskbar.cpp b/backends/taskbar/win32/win32-taskbar.cpp
index 4053708e96..c05b91d9f3 100644
--- a/backends/taskbar/win32/win32-taskbar.cpp
+++ b/backends/taskbar/win32/win32-taskbar.cpp
@@ -22,7 +22,15 @@
* $Id$
*
*/
-
+
+// We need certain functions that are excluded by default
+#undef NONLS
+#undef NOICONS
+#include <windows.h>
+#if defined(ARRAYSIZE)
+ #undef ARRAYSIZE
+#endif
+
#include "common/scummsys.h"
#if defined(WIN32) && defined(USE_TASKBAR)