mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[HIDCLASS]
* Do not include debug.h into the main header. * Cleanup the main header. * Improve the GUIDs situation. CORE-7716 svn path=/trunk/; revision=61497
This commit is contained in:
parent
35fbe8f7b5
commit
8c30aa7f03
4 changed files with 15 additions and 6 deletions
|
@ -10,6 +10,9 @@
|
||||||
|
|
||||||
#include "precomp.h"
|
#include "precomp.h"
|
||||||
|
|
||||||
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
NTAPI
|
NTAPI
|
||||||
HidClassFDO_QueryCapabilitiesCompletionRoutine(
|
HidClassFDO_QueryCapabilitiesCompletionRoutine(
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
|
|
||||||
#include "precomp.h"
|
#include "precomp.h"
|
||||||
|
|
||||||
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
static LPWSTR ClientIdentificationAddress = L"HIDCLASS";
|
static LPWSTR ClientIdentificationAddress = L"HIDCLASS";
|
||||||
static ULONG HidClassDeviceNumber = 0;
|
static ULONG HidClassDeviceNumber = 0;
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,11 @@
|
||||||
|
|
||||||
#include "precomp.h"
|
#include "precomp.h"
|
||||||
|
|
||||||
|
#include <wdmguid.h>
|
||||||
|
|
||||||
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
PHIDP_COLLECTION_DESC
|
PHIDP_COLLECTION_DESC
|
||||||
HidClassPDO_GetCollectionDescription(
|
HidClassPDO_GetCollectionDescription(
|
||||||
PHIDP_DEVICE_DESC DeviceDescription,
|
PHIDP_DEVICE_DESC DeviceDescription,
|
||||||
|
|
|
@ -1,14 +1,12 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define _HIDPI_NO_FUNCTION_MACROS_
|
#define _HIDPI_NO_FUNCTION_MACROS_
|
||||||
#define NDEBUG
|
#include <wdm.h>
|
||||||
#include <ntddk.h>
|
|
||||||
#include <initguid.h>
|
|
||||||
#include <hidport.h>
|
|
||||||
#include <hidpddi.h>
|
#include <hidpddi.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <wdmguid.h>
|
|
||||||
#include <debug.h>
|
#include <initguid.h>
|
||||||
|
#include <hidport.h>
|
||||||
|
|
||||||
#define HIDCLASS_TAG 'CdiH'
|
#define HIDCLASS_TAG 'CdiH'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue