Reorder includes for drive_cache
Class DOS_Drive_Cache is declared in dos_system.h, but this header was indirectly included. Remove faulty windows.h include (the correct one exists in cross.h already).
This commit is contained in:
parent
079e1e1aa0
commit
4a6704367b
2 changed files with 13 additions and 25 deletions
|
@ -16,23 +16,17 @@
|
|||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#include "dos_system.h"
|
||||
|
||||
#include "drives.h"
|
||||
#include "dos_inc.h"
|
||||
#include "support.h"
|
||||
#include "cross.h"
|
||||
|
||||
// System includes
|
||||
#include <assert.h>
|
||||
#include <vector>
|
||||
#include <iterator>
|
||||
#include <algorithm>
|
||||
#include <cassert>
|
||||
#include <iterator>
|
||||
#include <vector>
|
||||
|
||||
#if defined (WIN32) /* Win 32 */
|
||||
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
#include "cross.h"
|
||||
#include "dos_inc.h"
|
||||
#include "drives.h"
|
||||
#include "support.h"
|
||||
|
||||
int fileInfoCounter = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue