mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 05:20:54 +00:00
[USBEHCI_NEW]
- Forgotten changes in r51397. svn path=/branches/usb-bringup/; revision=51398
This commit is contained in:
parent
c3d1d6fda9
commit
40e499c2d4
1 changed files with 25 additions and 1 deletions
|
@ -209,7 +209,31 @@ DECLARE_INTERFACE_(IUSBHardwareDevice, IUnknown)
|
|||
//
|
||||
|
||||
virtual NTSTATUS ResetPort(ULONG PortNumber) = 0;
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------------------
|
||||
//
|
||||
// GetPortStatus
|
||||
//
|
||||
// Description: this functions return status and change state of port
|
||||
//
|
||||
virtual NTSTATUS GetPortStatus(ULONG PortId, OUT USHORT *PortStatus, OUT USHORT *PortChange) = 0;
|
||||
|
||||
//-----------------------------------------------------------------------------------------
|
||||
//
|
||||
// ClearPortStatus
|
||||
//
|
||||
// Description: Clears Status of Port, for example Connection, Enable and Reset
|
||||
//
|
||||
virtual NTSTATUS ClearPortStatus(ULONG PortId, ULONG Status) = 0;
|
||||
|
||||
//-----------------------------------------------------------------------------------------
|
||||
//
|
||||
// SetPortFeature
|
||||
//
|
||||
// Description: this functions Sets Feature on Port, for example Enable, Power and Reset
|
||||
//
|
||||
virtual NTSTATUS SetPortFeature(ULONG PortId, ULONG Feature) = 0;
|
||||
|
||||
//-----------------------------------------------------------------------------------------
|
||||
//
|
||||
// SetAsyncListRegister
|
||||
|
|
Loading…
Reference in a new issue