UfxDeviceEventComplete 函数 (ufxclient.h)

通知 UFX 客户端驱动程序已完成处理 UFX 回调函数。

语法

void UfxDeviceEventComplete(
  [in] UFXDEVICE UfxDevice,
  [in] NTSTATUS  Status
);

参数

[in] UfxDevice

驱动程序通过调用 UfxDeviceCreate 创建的 UFX 设备对象的句柄。

[in] Status

正在完成的事件的状态。

返回值

备注

客户端驱动程序调用 UfxDeviceEventComplete 以指示以下回调函数完成:

例如,回调函数可以使用以下代码:
    EventComplete = TRUE;

    ...

    if (EventComplete) {
        UfxDeviceEventComplete(UfxDevice, STATUS_SUCCESS);
    }

要求

要求
最低受支持的客户端 Windows 10
目标平台 Windows
标头 ufxclient.h
Library ufxstub.lib
IRQL DISPATCH_LEVEL