* Do not include debug.h into the main header.
* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61947
This commit is contained in:
Amine Khaldi 2014-02-03 10:45:04 +00:00
parent eb04ce9050
commit 142e6c06b4
4 changed files with 7 additions and 8 deletions

View file

@ -13,7 +13,6 @@
#define NDEBUG
#include <debug.h>
/* GLOBALS ********************************************************************/
ULONG ControllerCount = 0;
@ -166,4 +165,4 @@ DriverEntry(IN PDRIVER_OBJECT DriverObject,
DriverObject->DriverUnload = FdcDriverUnload;
return STATUS_SUCCESS;
}
}

View file

@ -7,9 +7,6 @@
*/
#include <ntifs.h>
#include <ntddk.h>
#include <stdio.h>
#include <debug.h>
#define MAX_DEVICE_NAME 255
#define MAX_ARC_PATH_LEN 255
@ -124,5 +121,3 @@ NTAPI
FdcPdoPnp(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp);
/* EOF */

View file

@ -10,6 +10,9 @@
#include "fdc.h"
#include <stdio.h>
#include <debug.h>
/* FUNCTIONS ******************************************************************/
static IO_COMPLETION_ROUTINE ForwardIrpAndWaitCompletion;
@ -573,4 +576,4 @@ FdcFdoPnp(
return Status;
}
/* EOF */
/* EOF */

View file

@ -10,6 +10,8 @@
#include "fdc.h"
#include <debug.h>
/* FUNCTIONS ******************************************************************/
static