UFX_PROPRIETARY_CHARGER_RESET_OPERATION callback function (ufxproprietarycharger.h)

The filter driver's implementation to reset a charger operation.

Syntax

UFX_PROPRIETARY_CHARGER_RESET_OPERATION UfxProprietaryChargerResetOperation;

NTSTATUS UfxProprietaryChargerResetOperation(
  [in] PVOID Context
)
{...}

Parameters

[in] Context

A pointer to a driver-defined context.

Return value

If the operation is successful, the callback function must return STATUS_SUCCESS, or another status value for which NT_SUCCESS(status) equals TRUE. Otherwise it must return a status value for which NT_SUCCESS(status) equals FALSE.

Remarks

To support handling of proprietary chargers, the USB lower filter driver must publish support. During the publishing process, the driver also registers its implementation of this callback function. For more information, see USB filter driver for supporting proprietary chargers.

Requirements

Requirement Value
Target Platform Windows
Minimum KMDF version 1.0
Minimum UMDF version 2.0
Header ufxproprietarycharger.h
IRQL <=DISPATCH_LEVEL

See also

USB filter driver for supporting proprietary chargers