UfxDeviceEventComplete function (ufxclient.h)

Informs UFX that the client driver has completed processing a UFX callback function.

Syntax

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

Parameters

[in] UfxDevice

A handle to a UFX device object that the driver created by calling UfxDeviceCreate.

[in] Status

Status of the event being completed.

Return value

None

Remarks

The client driver calls UfxDeviceEventComplete to signal completion of the following callback functions:

For example, your callback function could use the following code:
    EventComplete = TRUE;

    ...

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

Requirements

Requirement Value
Minimum supported client Windows 10
Target Platform Windows
Header ufxclient.h
Library ufxstub.lib
IRQL DISPATCH_LEVEL