共用方式為


UfxDeviceNotifyResume 函式 (ufxclient.h)

通知UFX有關USB總線繼續事件。

語法

void UfxDeviceNotifyResume(
  [in] UFXDEVICE UfxDevice
);

參數

[in] UfxDevice

呼叫 UfxDeviceCreate所建立驅動程式之UFX裝置物件的句柄。

傳回值

備註

當客戶端驅動程式收到總線繼續事件時,會呼叫 UfxDeviceNotifyResume 。 控制器應該回到在總線繼續事件發生時所在的相同狀態。

用戶端驅動程式通常會從其 EvtInterruptDpc 回呼函式呼叫 UfxDeviceNotifyResume。 下列範例示範如何處理繼續事件。

    case DeviceEventWakeUp:
        if (ControllerContext->Suspended) {
            ControllerContext->Suspended = FALSE;
            UfxDeviceNotifyResume(ControllerContext->UfxDevice);
        }
        break;

規格需求

需求
最低支援的用戶端 Windows 10
目標平台 Windows
標頭 ufxclient.h
程式庫 ufxstub.lib
IRQL DISPATCH_LEVEL