* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61852
This commit is contained in:
Amine Khaldi 2014-01-27 12:29:29 +00:00
parent 0f2f7f1c78
commit 268afe1faf
3 changed files with 4 additions and 15 deletions

View file

@ -13,7 +13,6 @@
#define NDEBUG
#include <debug.h>
/* FUNCTIONS ******************************************************************/
/*

View file

@ -17,34 +17,23 @@
#include "VisualDDKHelpers.h"
#endif
#include <ntddk.h>
#include <condrv/ntddcon.h>
#include <wdm.h>
#define CONDRV_TAG ' noC'
#define DD_CONDRV_TAG '1noC'
#define CONDRV_CONS_TAG '2noC'
//
// Console Driver object extension
//
/* Console Driver object extension */
typedef struct _CONDRV_DRIVER
{
UNICODE_STRING RegistryPath;
PDEVICE_OBJECT Controller; // The unique Controller device for the driver.
} CONDRV_DRIVER, *PCONDRV_DRIVER;
NTSTATUS NTAPI
ConDrvCreateController(IN PDRIVER_OBJECT DriverObject,
IN PUNICODE_STRING RegistryPath);
NTSTATUS NTAPI
ConDrvDeleteController(IN PDRIVER_OBJECT DriverObject);
#endif // __CONDRV_H__
/* EOF */

View file

@ -10,10 +10,11 @@
#include "condrv.h"
#include <condrv/ntddcon.h>
#define NDEBUG
#include <debug.h>
/* FUNCTIONS ******************************************************************/
NTSTATUS NTAPI