LINEQUEUELIST structure (tapi.h)

The LINEQUEUELIST structure describes a list of queues. This structure can contain an array of LINEQUEUEENTRY structures. The lineGetQueueList function returns the LINEQUEUELIST structure. LINEQUEUELIST requires TAPI 3.0 version negotiation.

Syntax

typedef struct linequeuelist_tag {
  DWORD dwTotalSize;
  DWORD dwNeededSize;
  DWORD dwUsedSize;
  DWORD dwNumEntries;
  DWORD dwListSize;
  DWORD dwListOffset;
} LINEQUEUELIST, *LPLINEQUEUELIST;

Members

dwTotalSize

Total size allocated to this structure, in bytes.

dwNeededSize

Size needed to hold all the information requested, in bytes.

dwUsedSize

Size of the portion of this structure that contains useful information, in bytes.

dwNumEntries

Number of LINEQUEUEENTRY structures that appear in the list array. The value is zero if no queue is available.

dwListSize

Size of the agent information array, in bytes.

dwListOffset

Offset from the beginning of the structure to an array of LINEQUEUEENTRY structure that specify information about agents. The dwListOffset member is dwNumEntries times SIZEOF(LINEQUEUEENTRY). The size of the field is specified by dwListSize.

Requirements

Requirement Value
Header tapi.h

See also

About Call Center Controls

LINEQUEUEENTRY

lineGetQueueList