[FASTFAT]

* Do not include debug.h into the main header.

svn path=/trunk/; revision=61295
This commit is contained in:
Amine Khaldi 2013-12-19 16:20:28 +00:00
parent d6218793bb
commit f69a3b2930
22 changed files with 65 additions and 24 deletions

View file

@ -9,9 +9,11 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include "vfat.h"
#define NDEBUG
#include <debug.h>
/* FUNCTIONS ***************************************************************/
static IO_COMPLETION_ROUTINE VfatReadWritePartialCompletion;

View file

@ -8,9 +8,11 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include "vfat.h"
#define NDEBUG
#include <debug.h>
/* FUNCTIONS ****************************************************************/
/*

View file

@ -8,9 +8,11 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include "vfat.h"
#define NDEBUG
#include <debug.h>
/* FUNCTIONS ****************************************************************/
/*

View file

@ -25,9 +25,11 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include "vfat.h"
#define NDEBUG
#include <debug.h>
/* FUNCTIONS *****************************************************************/
VOID

View file

@ -10,9 +10,11 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include "vfat.h"
#define NDEBUG
#include <debug.h>
/* FUNCTIONS ****************************************************************/
/* Function like DosDateTimeToFileTime */

View file

@ -10,9 +10,11 @@
/* ------------------------------------------------------- INCLUDES */
#define NDEBUG
#include "vfat.h"
#define NDEBUG
#include <debug.h>
ULONG
vfatDirEntryGetFirstCluster(
PDEVICE_EXTENSION pDeviceExt,

View file

@ -8,9 +8,11 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include "vfat.h"
#define NDEBUG
#include <debug.h>
/*
* update an existing FAT entry
*/

View file

@ -25,9 +25,11 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include "vfat.h"
#define NDEBUG
#include <debug.h>
/* FUNCTIONS *****************************************************************/
NTSTATUS

View file

@ -6,9 +6,11 @@
* PROGRAMMER: Herve Poussineau (hpoussin@reactos.org)
*/
#define NDEBUG
#include "vfat.h"
#define NDEBUG
#include <debug.h>
static FAST_IO_CHECK_IF_POSSIBLE VfatFastIoCheckIfPossible;
static

View file

@ -9,9 +9,11 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include "vfat.h"
#define NDEBUG
#include <debug.h>
/* GLOBALS ******************************************************************/
#define CACHEPAGESIZE(pDeviceExt) ((pDeviceExt)->FatInfo.BytesPerCluster > PAGE_SIZE ? \

View file

@ -10,13 +10,15 @@
/* ------------------------------------------------------- INCLUDES */
#include "vfat.h"
#define NDEBUG
#include <debug.h>
#ifdef __GNUC__
#include <wctype.h> /* towlower prototype */
#endif
#define NDEBUG
#include "vfat.h"
/* -------------------------------------------------------- DEFINES */
#define TAG_FCB 'BCFV'

View file

@ -10,9 +10,11 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include "vfat.h"
#define NDEBUG
#include <debug.h>
/* GLOBALS ******************************************************************/
const char* FileInformationClassNames[] =

View file

@ -8,9 +8,11 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include "vfat.h"
#define NDEBUG
#include <debug.h>
/* FUNCTIONS ****************************************************************/
static

View file

@ -25,9 +25,11 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include "vfat.h"
#define NDEBUG
#include <debug.h>
/* FUNCTIONS ****************************************************************/
#define CACHEPAGESIZE(pDeviceExt) ((pDeviceExt)->FatInfo.BytesPerCluster > PAGE_SIZE ? \

View file

@ -25,9 +25,11 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include "vfat.h"
#define NDEBUG
#include <debug.h>
/* GLOBALS *****************************************************************/
PVFAT_GLOBAL_DATA VfatGlobalData;

View file

@ -9,9 +9,11 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include "vfat.h"
#define NDEBUG
#include <debug.h>
/* GLOBALS ******************************************************************/
const char* MajorFunctionNames[] =

View file

@ -9,9 +9,11 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include "vfat.h"
#define NDEBUG
#include <debug.h>
/* FUNCTIONS ****************************************************************/
NTSTATUS

View file

@ -9,9 +9,11 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include "vfat.h"
#define NDEBUG
#include <debug.h>
/*
* Uncomment to enable strict verification of cluster/offset pair
* caching. If this option is enabled you lose all the benefits of

View file

@ -8,9 +8,11 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include "vfat.h"
#define NDEBUG
#include <debug.h>
/* FUNCTIONS ****************************************************************/
static

View file

@ -9,9 +9,11 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include "vfat.h"
#define NDEBUG
#include <debug.h>
/* FUNCTIONS ****************************************************************/
const WCHAR *long_illegals = L"\"*\\<>/?:|";

View file

@ -1,7 +1,6 @@
#include <ntifs.h>
#include <bugcodes.h>
#include <ntdddisk.h>
#include <debug.h>
#include <dos.h>
#define USE_ROS_CC_AND_FS

View file

@ -9,9 +9,11 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include "vfat.h"
#define NDEBUG
#include <debug.h>
/* FUNCTIONS ****************************************************************/
static