LINECALLLIST
The LINECALLLIST
structure describes a list of call handles. A structure of this type is
returned by the functions lineGetNewCalls
typedef struct linecalllist_tag {
DWORD dwTotalSize;
DWORD dwNeededSize;
DWORD dwUsedSize;
DWORD dwCallsNumEntries;
DWORD dwCallsSize;
DWORD dwCallsOffset;
} LINECALLLIST, FAR *LPLINECALLLIST;
Members
dwTotalSize
The total
size in bytes allocated to this data structure.
dwNeededSize
The size in
bytes for this data structure that is needed to hold all the returned
information.
dwUsedSize
The size in
bytes of the portion of this data structure that contains useful information.
dwCallsNumEntries
The number of
handles in the hCalls array.
dwCallsSize
dwCallsOffset
The size in
bytes and the offset in bytes from the beginning of this data structure of the
variably sized field (which is an array of HCALL-sized handles).
Remarks
No
extensions.
See Also