Share via


LINECALLLIST (Compact 2013)

3/26/2014

This structure describes a list of call handles. A structure of this type is returned by the lineGetNewCalls and lineGetConfRelatedCalls functions.

Syntax

typedef struct linecalllist_tag {
  DWORD dwTotalSize;
  DWORD dwNeededSize;
  DWORD dwUsedSize;
  DWORD dwCallsNumEntries;
  DWORD dwCallsSize;
  DWORD dwCallsOffset;
} LINECALLLIST, FAR* LPLINECALLLIST; 

Members

  • dwTotalSize
    Total size allocated to this data structure, in bytes.
  • dwNeededSize
    Size for this data structure that is needed to hold all the returned information, in bytes.
  • dwUsedSize
    Size of the portion of this data structure that contains useful information, in bytes.
  • dwCallsNumEntries
    Number of handles in the hCalls array.
  • dwCallsSize
    Size of the array of call handles, in bytes.
  • dwCallsOffset
    Offset from the beginning of the structure to the variably sized array of HCALL handles. The size of the array is specified by the dwCallsSize member.

Remarks

This structure may not be extended.

Requirements

Header

tapi.h

See Also

Reference

TAPI Structures
lineGetNewCalls
lineGetConfRelatedCalls