|
lineGetAgentCaps
The lineGetAgentCaps function obtains the agent-related capabilities supported on the specified
line device. If a specific agent is named, the capabilities will include a
listing of ACD groups into which the agent is permitted to log in.
LONG lineGetAgentCaps(
HLINEAPP hLineApp,
|
| DWORD dwDeviceID,
|
| DWORD dwAddressID,
|
| DWORD dwAppAPIVersion,
|
| LPLINEAGENTCAPS lpAgentCaps
|
| );
|
|
Parameters
hLineApp
The handle to the application's registration with TAPI.
dwDeviceID
The line device containing the address to be queried.
dwAddressID
The address on the given line device whose capabilities are to be queried.
dwAppAPIVersion
The highest API version supported by the application. This should not be the value negotiated using lineNegotiateAPIVersion on the device being queried.
lpAgentCaps
A pointer to a variably sized structure of type LINEAGENTCAPS. Upon successful completion of the request, this structure is filled with
agent capabilities information. Prior to calling lineGetAgentCaps, the application should set the dwTotalSize field of this structure to indicate the amount of memory available to TAPI
for returning information.
Return Values
Returns a positive request identifier if the asynchronous operation starts;
otherwise, one of these negative error values:
LINEERR_BADDEVICEID, LINEERR_NOMEM, LINEERR_INCOMPATIBLEAPIVERSION,
LINEERR_OPERATIONFAILED, LINEERR_INVALADDRESSID, LINEERR_OPERATIONUNAVAIL,
LINEERR_INVALAPPHANDLE, LINEERR_RESOURCEUNAVAIL, LINEERR_INVALPOINTER,
LINEERR_STRUCTURETOOSMALL, LINEERR_NODRIVER, LINEERR_UNINITIALIZED, LINEERR_NODEVICE.
See Also
LINEAGENTCAPS, lineNegotiateAPIVersion
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Unix Manual Pages
|