共用方式為


UfxEndpointNotifySetup 函式 (ufxclient.h)

當客戶端驅動程式收到來自主機的安裝封包時,通知 UFX。

語法

void UfxEndpointNotifySetup(
       UFXENDPOINT                    UfxEndpoint,
  [in] PUSB_DEFAULT_PIPE_SETUP_PACKET SetupInfo
);

參數

UfxEndpoint

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

[in] SetupInfo

usbspec.h) 中所定義 之USB_DEFAULT_PIPE_SETUP_PACKET (結構中所述之 USB 安裝封包的指標。

傳回值

備註

下列範例示範如何處理安裝封包完成。

    if (ControlContext->SetupRequested) {
        TRACE_TRANSFER("COMPLETE (Setup)", Endpoint, NULL);
        
        ControlContext->SetupRequested = FALSE;
        TransferContext->TransferStarted = FALSE;

        UfxEndpointNotifySetup(Endpoint, ControlContext->SetupPacket);

    } 

規格需求

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