|
lineInitialize
The lineInitialize function is obsolete. It continues to be exported by TAPI.DLL and TAPI32.DLL
for backward compatibility with applications using API versions 0x00010003 and
0x00010004.
Applications using API version 0x00020000 or greater must use lineInitializeEx instead.
For Windows 95 applications only
The lineInitialize function initializes the application's use of TAPI.DLL for subsequent use of
the line abstraction. It registers the application's specified notification
mechanism and returns the number of line devices available to the application. A
line device is any device that provides an implementation for the line-prefixed
functions in the Telephony API.
LONG lineInitialize(
LPHLINEAPP lphLineApp,
|
| HINSTANCE hInstance,
|
| LINECALLBACK lpfnCallback,
|
| LPCSTR lpszAppName,
|
| LPDWORD lpdwNumDevs
|
| );
|
|
Parameters
lphLineApp
A pointer to a location that is filled with the application's usage handle for
TAPI.
hInstance
The instance handle of the client application or DLL.
lpfnCallback
The address of a callback function that is invoked to determine status and
events on the line device, addresses, or calls. For more information see lineCallbackFunc.
lpszAppName
A pointer to a NULL-terminated ASCII string that contains only displayable
ASCII characters. If this parameter is not NULL, it contains an
application-supplied name for the application. This name is provided in the LINECALLINFO structure to indicate, in a user-friendly way, which application originated,
or originally accepted or answered the call. This information can be useful for
call logging purposes. If lpszAppName is NULL, the application's filename is used instead.
lpdwNumDevs
A pointer to a DWORD-sized location. Upon successful completion of this request, this location is
filled with the number of line devices available to the application.
Return Values
Returns zero if the request is successful or a negative error number if an
error has occurred. Possible return values are:
LINEERR_INVALAPPNAME, LINEERR_OPERATIONFAILED, LINEERR_INIFILECORRUPT,
LINEERR_RESOURCEUNAVAIL, LINEERR_INVALPOINTER, LINEERR_REINIT, LINEERR_NODRIVER,
LINEERR_NODEVICE, LINEERR_NOMEM, LINEERR_NOMULTIPLEINSTANCE.
Remarks
If LINEERR_REINIT is returned and TAPI reinitialization has been requested
(for example as a result of adding or removing a Telephony service provider), then lineInitialize requests are rejected with this error until the last application shuts down
its usage of the API (using lineShutdown). At that time, the new configuration becomes effective and applications are
once again permitted to call lineInitialize. If the LINEERR_INVALPARAM error value is returned, the specified hInstance parameter is invalid.
The application can refer to individual line devices by using line device IDs
that range from zero to dwNumDevs minus one. An application should not assume that these line devices are
capable of anything beyond what is specified by the Basic Telephony subset without
first querying their device capabilities using lineGetDevCaps and lineGetAddressCaps.
Applications should not invoke lineInitialize without subsequently opening a line (at least for monitoring). If the
application is not monitoring and not using any devices, it should call lineShutdown so that memory resources allocated by TAPI.DLL can be released if unneeded,
and TAPI.DLL itself can be unloaded from memory while not needed.
Another reason for performing a lineShutdown is that if a user changes the device configuration (adds or removes a line or
phone), there is no way for TAPI to notify an application that has a line or
phone handle open at the time. Once a reconfiguration has taken place, causing a
LINEDEVSTATE_REINIT message to be sent, no applications can open a device
until all applications have performed a lineShutdown. If any service provider fails to initialize properly, this function fails
and returns the error indicated by the service provider.
On all TAPI platforms, lineInitialize is equivalent to lineInitializeEx() using the LINEINITIALIZEEXOPTION_USEHIDDENWINDOW option.
| 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
|