Edit

TCI_CLIENT_FUNC_LIST structure (traffic.h)

The TCI_CLIENT_FUNC_LIST structure is used by the traffic control interface to register and then access client-callback functions. Each member of TCI_CLIENT_FUNC_LIST is a pointer to the client provided–callback function.

Syntax

typedef struct _TCI_CLIENT_FUNC_LIST {
  TCI_NOTIFY_HANDLER            ClNotifyHandler;
  TCI_ADD_FLOW_COMPLETE_HANDLER ClAddFlowCompleteHandler;
  TCI_MOD_FLOW_COMPLETE_HANDLER ClModifyFlowCompleteHandler;
  TCI_DEL_FLOW_COMPLETE_HANDLER ClDeleteFlowCompleteHandler;
} TCI_CLIENT_FUNC_LIST, *PTCI_CLIENT_FUNC_LIST;

Members

ClNotifyHandler

Pointer to the client-callback function ClNotifyHandler.

ClAddFlowCompleteHandler

Pointer to the client-callback function ClAddFlowComplete.

ClModifyFlowCompleteHandler

Pointer to the client-callback function ClModifyFlowComplete.

ClDeleteFlowCompleteHandler

Pointer to the client-callback function ClDeleteFlowComplete.

Remarks

Any member of the TCI_CLIENT_FUNC_LIST structure can be NULL except ClNotifyHandler.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Header traffic.h

See also

ClAddFlowComplete

ClDeleteFlowComplete

ClModifyFlowComplete

ClNotifyHandler