Important: |
---|
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist. |
This function initializes RIL for use by a client.
Syntax
HRESULT RIL_Initialize( DWORD dwIndex, RILRESULTCALLBACK pfnResult, RILNOTIFYCALLBACK pfnNotify, DWORD dwNotificationClasses, DWORD dwParam, HRIL* lphRil ); |
Parameters
- dwIndex
-
Specifies the index of the RIL port to use, for example, 1 for RIL1:.
- pfnResult
-
Function result callback.
- pfnNotify
-
Notification callback.
- dwNotificationClasses
-
Specifies the classes of notifications to be enabled for a client.
- dwParam
-
Specifies the custom parameter passed to result and notification callbacks.
- lphRil
-
Returned Handle to the RIL instance.
Return Value
The function returns the following values:
Value | Description |
---|---|
S_OK |
The driver is up and radio is present. |
S_FALSE |
The driver is still waiting for radio presence. |
E_XXX |
The call to initialize the driver has failed. |
Remarks
This function is synchronous. Synchronous RIL only supports single-threaded RIL handles. The RIL validates the application's RIL handle before using it. An application cannot use a RIL handle that it does not own.
Call RIL_Deinitializeto release the handle. If the RIL client generates an exception or exits without calling RIL_Deinitialize, the RIL library will release the handle when the DLL is unloaded.
Note: |
---|
You should notuse CloseHandleto release this handle. |
When a client calls RIL_Initialize, it can also register for notifications. If it registers for notifications, the driver will send a RIL_NOTIFY_RADIOPRESENCECHANGED indicating if the radio is present or not present. The proxy returns S_FALSE as an indication that the driver has not detected the radio presence yet. The pending notification is used by the client to determine when the radio is present. For more information about RIL_NOTIFY_RADIOPRESENCECHANGED, see Notification Radio State Change Constants.
If the client does not register for notifications when RIL_Initializeis called, it has two options.
The client can periodically call RIL_DeInitializeand then call RIL_Initializeuntil the proxy returns S_OK.
- The client can periodically call
RIL_DeInitializeand then call
RIL_Initializeuntil the proxy returns S_OK.
- The client can periodically call the desired RIL_API until the
API no longer returns RIL_E_RADIOPRESENT.
Requirements
Header | ril.h |
Library | Ril.lib |
Windows Embedded CE | Windows CE .NET 4.2 and later |