mirror of
https://github.com/reactos/reactos.git
synced 2025-04-17 19:27:00 +00:00
[FDC]
* 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:
parent
eb04ce9050
commit
142e6c06b4
4 changed files with 7 additions and 8 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
|
||||
#include "fdc.h"
|
||||
|
||||
#include <debug.h>
|
||||
|
||||
/* FUNCTIONS ******************************************************************/
|
||||
|
||||
static
|
||||
|
|
Loading…
Reference in a new issue