aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/windows/windows-fs.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2008-09-03 09:03:21 +0000
committerFilippos Karapetis2008-09-03 09:03:21 +0000
commit9691562987bd6381b581efb015d15d83d9f2084f (patch)
tree07bb457af419a3bd76d72017caeba5e002a68b07 /backends/fs/windows/windows-fs.cpp
parent916e088bdb153428be10d39fe7fadcfdf02539f2 (diff)
downloadscummvm-rg350-9691562987bd6381b581efb015d15d83d9f2084f.tar.gz
scummvm-rg350-9691562987bd6381b581efb015d15d83d9f2084f.tar.bz2
scummvm-rg350-9691562987bd6381b581efb015d15d83d9f2084f.zip
Cleanup
svn-id: r34295
Diffstat (limited to 'backends/fs/windows/windows-fs.cpp')
-rw-r--r--backends/fs/windows/windows-fs.cpp10
1 files changed, 1 insertions, 9 deletions
diff --git a/backends/fs/windows/windows-fs.cpp b/backends/fs/windows/windows-fs.cpp
index b06581047c..afcae0f294 100644
--- a/backends/fs/windows/windows-fs.cpp
+++ b/backends/fs/windows/windows-fs.cpp
@@ -24,24 +24,16 @@
#ifdef WIN32
-#ifdef ARRAYSIZE
-#undef ARRAYSIZE
-#endif
-#ifdef _WIN32_WCE
#include <windows.h>
// winnt.h defines ARRAYSIZE, but we want our own one...
#undef ARRAYSIZE
+#ifdef _WIN32_WCE
#undef GetCurrentDirectory
#endif
#include "backends/fs/abstract-fs.h"
#include <io.h>
#include <stdio.h>
#include <stdlib.h>
-#ifndef _WIN32_WCE
-#include <windows.h>
-// winnt.h defines ARRAYSIZE, but we want our own one...
-#undef ARRAYSIZE
-#endif
#include <tchar.h>
// F_OK, R_OK and W_OK are not defined under MSVC, so we define them here