[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 *****************************************************************/ /* INCLUDES *****************************************************************/
#define NDEBUG
#include "vfat.h" #include "vfat.h"
#define NDEBUG
#include <debug.h>
/* FUNCTIONS ***************************************************************/ /* FUNCTIONS ***************************************************************/
static IO_COMPLETION_ROUTINE VfatReadWritePartialCompletion; static IO_COMPLETION_ROUTINE VfatReadWritePartialCompletion;

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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