|
linePark
The linePark function parks the specified call according to the specified park mode.
LONG linePark(
HCALL hCall,
|
| DWORD dwParkMode,
|
| LPCSTR lpszDirAddress,
|
| LPVARSTRING lpNonDirAddress
|
| );
|
|
Parameters
hCall
A handle to the call to be parked. The application must be an owner of the
call. The call state of hCall must be connected.
dwParkMode
The park mode with which the call is to be parked. This parameter can have
only a single flag set, and it uses the following LINEPARKMODE_ constants:
LINEPARKMODE_DIRECTED
The application specifies at which address the call is to be parked in lpszDirAddress.
LINEPARKMODE_NONDIRECTED
This operation reports to the application where the call has been parked in lpNonDirAddress.
lpszDirAddress
A pointer to a NULL-terminated string that indicates the address where the
call is to be parked when using directed park. The address is in dialable number
format. This parameter is ignored for nondirected park.
lpNonDirAddress
A pointer to a structure of type VARSTRING. For nondirected park, the address where the call is parked is returned in
this structure. This parameter is ignored for directed park. Within the VARSTRING structure, dwStringFormat must be set to STRINGFORMAT_ASCII (an ASCII string buffer containing a
NULL-terminated string), and the terminating NULL must be accounted for in the dwStringSize. Prior to calling linePark, 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 ID if the function will be completed
asynchronously, or a negative error number if an error has occurred. The dwParam2 parameter of the corresponding LINE_REPLY message is zero if the function is successful or it is a negative error
number if an error has occurred. Possible return values are:
LINEERR_INVALADDRESS, LINEERR_NOTOWNER, LINEERR_INVALCALLHANDLE,
LINEERR_OPERATIONUNAVAIL, LINEERR_INVALCALLSTATE, LINEERR_OPERATIONFAILED,
LINEERR_INVALPARKMODE, LINEERR_RESOURCEUNAVAIL, LINEERR_INVALPOINTER, LINEERR_STRUCTURETOOSMALL,
LINEERR_NOMEM, LINEERR_UNINITIALIZED.
Remarks
With directed park, the application determines the address at which it wants
to park the call. With nondirected park, the switch determines the address and
provides this to the application. In either case, a parked call can be unparked
by specifying this address.
The parked call typically enters the idle state after it has been successfully parked and the application should then
deallocate its handle to the call. If the application performs a lineUnpark on the parked call, a new call handle will be created for the unparked call
even if the application has not deallocated its old call handle.
Some switches may remind the user after a call has been parked for some long
amount of time. The application will see an offering call with a call reason set to reminder.
On a nondirected park, if the dwTotalSize member in the VARSTRING structure does not specify a sufficient amount of memory to receive the park
address, the corresponding reply message returns a LINEERR_STRUCTURETOOSMALL
error value. In such cases, there is no way to retrieve the complete park
address. Note that when a LINEERR_STRUCTURETOOSMALL error value is returned, the dwNeededSize field of the NonDirAddress structure does not contain a valid value. If a
LINEERR_STRUCTURETOOSMALL error value is received from a nondirected linePark,
then increase the size of the buffer and call linePark again until it returns either success or a different LINEERR_XXX result.
See Also
LINE_REPLY, lineUnpark, VARSTRING
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|