LINEAGENTACTIVITYENTRY structure (tapi.h)

The LINEAGENTACTIVITYENTRY structure describes a single ACD agent activity. The LINEAGENTACTIVITYLIST structure can contain an array of LINEAGENTACTIVITYENTRY structures.

Syntax

typedef struct lineagentactivityentry_tag {
  DWORD dwID;
  DWORD dwNameSize;
  DWORD dwNameOffset;
} LINEAGENTACTIVITYENTRY, *LPLINEAGENTACTIVITYENTRY;

Members

dwID

Unique identifier for an activity. It is the responsibility of the agent handler to generate and maintain uniqueness of this identifier.

dwNameSize

Size of the activity name including the null terminator, in bytes.

dwNameOffset

Offset from the beginning of this structure to a null-terminated string specifying the name and other identifying information of an activity that can be selected by calling the lineSetAgentActivity function. The size of the string is specified by dwNameSize.

Requirements

Requirement Value
Header tapi.h

See also

LINEAGENTACTIVITYLIST

LINEPROXYREQUEST

lineGetAgentActivityList

lineSetAgentActivity