Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

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

Feedback

Was this page helpful?

Additional resources