mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[USBUHCI]
* Move some inclusions and definitions to the main header. * Do not include debug.h into the main header. CORE-7716 svn path=/trunk/; revision=61379
This commit is contained in:
parent
da18e46206
commit
102d96c6d9
5 changed files with 15 additions and 8 deletions
|
@ -8,9 +8,10 @@
|
|||
* Johannes Anderwald (johannes.anderwald@reactos.org)
|
||||
*/
|
||||
|
||||
#define INITGUID
|
||||
#include "usbuhci.h"
|
||||
#include "hardware.h"
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
typedef VOID __stdcall HD_INIT_CALLBACK(IN PVOID CallBackContext);
|
||||
|
||||
|
|
|
@ -9,7 +9,9 @@
|
|||
*/
|
||||
|
||||
#include "usbuhci.h"
|
||||
#include "hardware.h"
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
class CUSBQueue : public IUHCIQueue
|
||||
{
|
||||
|
|
|
@ -8,10 +8,10 @@
|
|||
* Johannes Anderwald (johannes.anderwald@reactos.org)
|
||||
*/
|
||||
|
||||
#define INITGUID
|
||||
|
||||
#include "usbuhci.h"
|
||||
#include "hardware.h"
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
class CUSBRequest : public IUHCIRequest
|
||||
{
|
||||
|
|
|
@ -10,6 +10,9 @@
|
|||
|
||||
#include "usbuhci.h"
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
extern
|
||||
"C"
|
||||
NTSTATUS
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#ifndef USBUHCI_H__
|
||||
#define USBUHCI_H__
|
||||
|
||||
#define INITGUID
|
||||
|
||||
#include <ntddk.h>
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
#include <hubbusif.h>
|
||||
#include <usbbusif.h>
|
||||
#include <usbioctl.h>
|
||||
|
@ -30,6 +30,7 @@ extern
|
|||
#include <dmusicks.h>
|
||||
#include <kcom.h>
|
||||
|
||||
#include "hardware.h"
|
||||
#include "interfaces.h"
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue