[VFATLIB]

* Include NDK headers on-demand.
* Improve the PCH use.

svn path=/trunk/; revision=53286
This commit is contained in:
Amine Khaldi 2011-08-17 14:06:16 +00:00
parent 2a1f2c1d6c
commit 0991448ca8
3 changed files with 9 additions and 7 deletions

View file

@ -5,15 +5,11 @@
/* FAT32, VFAT, Atari format support, and various fixes additions May 1998
* by Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de> */
#include "vfatlib.h"
#include <time.h>
#define NDEBUG
#include <debug.h>
static DOS_FILE *root;
/* get start field of a dir entry */

View file

@ -4,8 +4,6 @@
#include "vfatlib.h"
#include <limits.h> // for INT_MAX definition
#define NDEBUG
#include <debug.h>

View file

@ -4,12 +4,20 @@
* FILE: vfatlib.h
*/
#include <stdio.h>
#define WIN32_NO_STATUS
#include <windows.h>
#define NTOS_MODE_USER
#include <ndk/ntndk.h>
#include <ndk/iofuncs.h>
#include <ndk/kefuncs.h>
#include <ndk/obfuncs.h>
#include <ndk/rtlfuncs.h>
#include <fmifs/fmifs.h>
#include <time.h>
#include <limits.h> // for INT_MAX definition
#include "check/dosfsck.h"
#include "check/common.h"
#include "check/io.h"