From 20e5d26f6eababc9b9e55dc4a3984412ab662977 Mon Sep 17 00:00:00 2001 From: Ulf Wohlers Date: Sat, 29 Mar 2003 20:16:28 +0000 Subject: [PATCH] changed includes to avoid macro redefinition Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@837 --- src/dos/drive_cache.cpp | 2 ++ src/dos/drive_local.cpp | 1 + 2 files changed, 3 insertions(+) diff --git a/src/dos/drive_cache.cpp b/src/dos/drive_cache.cpp index 22059186..01b55306 100644 --- a/src/dos/drive_cache.cpp +++ b/src/dos/drive_cache.cpp @@ -597,6 +597,8 @@ bool DOS_Drive_Cache::SetResult(CFileInfo* dir, char* &result, Bit16u entryNr) // No Dir Cache, // **************************************************************************** +static DIR* srch_opendir = 0; + DOS_No_Drive_Cache::DOS_No_Drive_Cache(const char* path) { SetBaseDir(path); diff --git a/src/dos/drive_local.cpp b/src/dos/drive_local.cpp index 2f4eb07e..bf84f433 100644 --- a/src/dos/drive_local.cpp +++ b/src/dos/drive_local.cpp @@ -21,6 +21,7 @@ #include #include #include +#include #include "dosbox.h" #include "dos_inc.h" #include "drives.h"