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
目标平台 窗户
标头 ufxclient.h
ufxstub.lib
IRQL DISPATCH_LEVEL