40 lines
460 B
C
40 lines
460 B
C
/*++
|
|
|
|
Copyright (c) 1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
common.h
|
|
|
|
Abstract:
|
|
|
|
common header for OHCI miniport
|
|
|
|
Environment:
|
|
|
|
Kernel mode
|
|
|
|
Revision History:
|
|
|
|
12-31-99 : created jdunn
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
|
|
|
|
#include "wdm.h"
|
|
#include "stdarg.h"
|
|
#include "stdio.h"
|
|
|
|
#include "usb.h"
|
|
#include "usbhcdi.h"
|
|
|
|
#include "openhci.h"
|
|
#include "dbg.h"
|
|
#include "usbohci.h"
|
|
|
|
#endif //COMMON_H
|