mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[SERMOUSE]
* Do not include debug.h from within the main header. * Improve the GUIDs situation. * Remove one time inclusions from the main header and put them back where they belong. CORE-7716 svn path=/trunk/; revision=61880
This commit is contained in:
parent
379fe87636
commit
0bf31251ea
8 changed files with 17 additions and 5 deletions
|
@ -8,6 +8,8 @@
|
||||||
|
|
||||||
#include "sermouse.h"
|
#include "sermouse.h"
|
||||||
|
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
NTSTATUS NTAPI
|
NTSTATUS NTAPI
|
||||||
SermouseCreate(
|
SermouseCreate(
|
||||||
IN PDEVICE_OBJECT DeviceObject,
|
IN PDEVICE_OBJECT DeviceObject,
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
|
|
||||||
#include "sermouse.h"
|
#include "sermouse.h"
|
||||||
|
|
||||||
|
#include <ntifs.h>
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
/* Most of this file is ripped from reactos/drivers/bus/serenum/detect.c */
|
/* Most of this file is ripped from reactos/drivers/bus/serenum/detect.c */
|
||||||
|
|
||||||
static NTSTATUS
|
static NTSTATUS
|
||||||
|
|
|
@ -8,6 +8,8 @@
|
||||||
|
|
||||||
#include "sermouse.h"
|
#include "sermouse.h"
|
||||||
|
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
NTSTATUS NTAPI
|
NTSTATUS NTAPI
|
||||||
SermouseAddDevice(
|
SermouseAddDevice(
|
||||||
IN PDRIVER_OBJECT DriverObject,
|
IN PDRIVER_OBJECT DriverObject,
|
||||||
|
|
|
@ -8,6 +8,8 @@
|
||||||
|
|
||||||
#include "sermouse.h"
|
#include "sermouse.h"
|
||||||
|
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
NTSTATUS NTAPI
|
NTSTATUS NTAPI
|
||||||
SermouseInternalDeviceControl(
|
SermouseInternalDeviceControl(
|
||||||
IN PDEVICE_OBJECT DeviceObject,
|
IN PDEVICE_OBJECT DeviceObject,
|
||||||
|
|
|
@ -8,6 +8,8 @@
|
||||||
|
|
||||||
#include "sermouse.h"
|
#include "sermouse.h"
|
||||||
|
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
static IO_COMPLETION_ROUTINE ForwardIrpAndWaitCompletion;
|
static IO_COMPLETION_ROUTINE ForwardIrpAndWaitCompletion;
|
||||||
|
|
||||||
static NTSTATUS NTAPI
|
static NTSTATUS NTAPI
|
||||||
|
|
|
@ -10,6 +10,8 @@
|
||||||
|
|
||||||
#include "sermouse.h"
|
#include "sermouse.h"
|
||||||
|
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
static NTSTATUS
|
static NTSTATUS
|
||||||
SermouseDeviceIoControl(
|
SermouseDeviceIoControl(
|
||||||
IN PDEVICE_OBJECT DeviceObject,
|
IN PDEVICE_OBJECT DeviceObject,
|
||||||
|
|
|
@ -6,9 +6,10 @@
|
||||||
* PROGRAMMERS: Copyright 2005-2006 Hervé Poussineau (hpoussin@reactos.org)
|
* PROGRAMMERS: Copyright 2005-2006 Hervé Poussineau (hpoussin@reactos.org)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define INITGUID
|
|
||||||
#include "sermouse.h"
|
#include "sermouse.h"
|
||||||
|
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
static DRIVER_UNLOAD DriverUnload;
|
static DRIVER_UNLOAD DriverUnload;
|
||||||
static DRIVER_DISPATCH IrpStub;
|
static DRIVER_DISPATCH IrpStub;
|
||||||
DRIVER_INITIALIZE DriverEntry;
|
DRIVER_INITIALIZE DriverEntry;
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
#include <ntifs.h>
|
#include <ntddk.h>
|
||||||
#include <kbdmou.h>
|
|
||||||
#include <ntddser.h>
|
#include <ntddser.h>
|
||||||
#include <ntddmou.h>
|
#include <kbdmou.h>
|
||||||
#include <debug.h>
|
|
||||||
|
|
||||||
#define SERMOUSE_TAG 'uoMS'
|
#define SERMOUSE_TAG 'uoMS'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue