Platform SDK: Quality of Service

ClModifyFlowComplete

The ClModifyFlowComplete function is used by traffic control to notify the client of the completion of its previous call to the TcModifyFlow function.

The ClModifyFlowComplete callback function is optional. If this function is not specified, TcModifyFlow will block until it completes.

VOID ClModifyFlowComplete(
  HANDLE ClFlowCtx,
  DWORD Status 
);

Parameters

ClFlowCtx
[in] Client provided–flow context handle. This can be the container used to hold an arbitrary client-defined context for this instance of the client. This value will be the same as the value provided by the client during its corresponding call to TcModifyFlow.
Status
[in] Completion status for the TcModifyFlow request. This value may be any of the return values possible for the TcModifyFlow function, with the exception of ERROR_SIGNAL_PENDING.

Note  Use of the ClModifyFlowComplete function requires administrative privilege.

Requirements

  Windows NT/2000: Requires Windows 2000.
  Windows 95/98: Unsupported.

See Also

TcModifyFlow