Use full path qualifiers in #include statements (exception: engines/ can be ommited, at least for now)

svn-id: r21620
This commit is contained in:
Max Horn 2006-04-05 00:18:22 +00:00
parent fba527651f
commit 2d10d1960e
6 changed files with 6 additions and 6 deletions

View File

@ -26,7 +26,7 @@
#include <stdio.h>
#include "base/engine.h"
#include "../fs.h"
#include "backends/fs/fs.h"
/*
* Implementation of the ScummVM file system API based on the MorphOS A-Box API.

View File

@ -22,7 +22,7 @@
#if defined(PALMOS_MODE)
#include "common/stdafx.h"
#include "fs/fs.h"
#include "backends/fs/fs.h"
#include <stdio.h>
#include <stdlib.h>

View File

@ -23,7 +23,7 @@
#include "common/stdafx.h"
#include "../fs.h"
#include "backends/fs/fs.h"
#ifdef MACOSX
#include <sys/types.h>

View File

@ -19,7 +19,7 @@
* $Id$
*/
#include "../fs.h"
#include "backends/fs/fs.h"
#include <kernel.h>
#include <stdio.h>
#include <stdlib.h>

View File

@ -24,7 +24,7 @@
#if defined (__SYMBIAN32__)
#include "common/stdafx.h"
#include "../fs.h"
#include "backends/fs/fs.h"
#include <dirent.h>
#include <eikenv.h>

View File

@ -22,7 +22,7 @@
#ifdef WIN32
#include "common/stdafx.h"
#include "../fs.h"
#include "backends/fs/fs.h"
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>