diff options
author | Filippos Karapetis | 2008-09-03 09:03:21 +0000 |
---|---|---|
committer | Filippos Karapetis | 2008-09-03 09:03:21 +0000 |
commit | 9691562987bd6381b581efb015d15d83d9f2084f (patch) | |
tree | 07bb457af419a3bd76d72017caeba5e002a68b07 | |
parent | 916e088bdb153428be10d39fe7fadcfdf02539f2 (diff) | |
download | scummvm-rg350-9691562987bd6381b581efb015d15d83d9f2084f.tar.gz scummvm-rg350-9691562987bd6381b581efb015d15d83d9f2084f.tar.bz2 scummvm-rg350-9691562987bd6381b581efb015d15d83d9f2084f.zip |
Cleanup
svn-id: r34295
-rw-r--r-- | backends/fs/windows/windows-fs.cpp | 10 |
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 |