mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +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"
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
HidClassFDO_QueryCapabilitiesCompletionRoutine(
|
||||
|
|
|
@ -10,6 +10,9 @@
|
|||
|
||||
#include "precomp.h"
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
static LPWSTR ClientIdentificationAddress = L"HIDCLASS";
|
||||
static ULONG HidClassDeviceNumber = 0;
|
||||
|
||||
|
|
|
@ -10,6 +10,11 @@
|
|||
|
||||
#include "precomp.h"
|
||||
|
||||
#include <wdmguid.h>
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
PHIDP_COLLECTION_DESC
|
||||
HidClassPDO_GetCollectionDescription(
|
||||
PHIDP_DEVICE_DESC DeviceDescription,
|
||||
|
|
|
@ -1,14 +1,12 @@
|
|||
#pragma once
|
||||
|
||||
#define _HIDPI_NO_FUNCTION_MACROS_
|
||||
#define NDEBUG
|
||||
#include <ntddk.h>
|
||||
#include <initguid.h>
|
||||
#include <hidport.h>
|
||||
#include <wdm.h>
|
||||
#include <hidpddi.h>
|
||||
#include <stdio.h>
|
||||
#include <wdmguid.h>
|
||||
#include <debug.h>
|
||||
|
||||
#include <initguid.h>
|
||||
#include <hidport.h>
|
||||
|
||||
#define HIDCLASS_TAG 'CdiH'
|
||||
|
||||
|
|
Loading…
Reference in a new issue