LINECALLLIST
This structure describes a list of call handles. A structure of this type is returned by the lineGetNewCalls and lineGetConfRelatedCalls functions.
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
OS Versions: Windows CE 3.0 and later.
Header: Tapi.h.
See Also
lineGetNewCalls | lineGetConfRelatedCalls
Last updated on Saturday, April 10, 2004
© 1992-2003 Microsoft Corporation. All rights reserved.