LINEPROXYREQUESTLIST structure (tapi.h)

The LINEPROXYREQUESTLIST structure describes a list of proxy requests. The lineGetProxyStatus function returns the LINEPROXYREQUESTLIST structure.

Syntax

typedef struct lineproxyrequestlist_tag {
  DWORD dwTotalSize;
  DWORD dwNeededSize;
  DWORD dwUsedSize;
  DWORD dwNumEntries;
  DWORD dwListSize;
  DWORD dwListOffset;
} LINEPROXYREQUESTLIST, *LPLINEPROXYREQUESTLIST;

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 DWORD elements that appear in the list array.

dwListSize

Size of the proxy request type list, in bytes.

dwListOffset

Offset from the beginning of the structure to an array of DWORD elements indicating the currently supported proxy request types. Each element is one of the LINEPROXYREQUEST_ constants. The dwListOffset member is dwNumEntries times SIZEOF(DWORD). The size of the field is specified by dwListSize.

Requirements

Requirement Value
Header tapi.h

See also

About Call Center Controls

LINEPROXYREQUEST_ Constants

lineGetProxyStatus