mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
737 B
42 lines
737 B
/*++
|
|
|
|
Copyright (c) 1995 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
ENUMLOG.H
|
|
|
|
Abstract:
|
|
|
|
structures for enumeration logging in USB client drivers using
|
|
usbport bus interface function.
|
|
|
|
Environment:
|
|
|
|
Kernel & user mode
|
|
|
|
Revision History:
|
|
|
|
12-19-01 : created
|
|
|
|
--*/
|
|
|
|
#ifndef __ENUMLOG_H__
|
|
#define __ENUMLOG_H__
|
|
|
|
/*
|
|
driver tags
|
|
*/
|
|
|
|
#define USBDTAG_HUB 'hbsu'
|
|
#define USBDTAG_USBPORT 'pbsu'
|
|
|
|
#define ENUMLOG(businterface, driverTag, sig, param1, param2) \
|
|
(businterface)->EnumLogEntry((businterface)->BusContext,\
|
|
driverTag,\
|
|
sig, \
|
|
(ULONG) param1, \
|
|
(ULONG) param2)
|
|
|
|
|
|
#endif //__ENUMLOG_H__
|