Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » MobiLink - Server-Initiated Synchronization » MobiLink Listener SDK for Palm » Device dependent functions

PalmLsnTargetDeviceID Next Page

PalmLsnGetConfigFileName


Returns a string containing the name of your Palm Listener configuration database.

Prototype

void PalmLsnGetConfigFileName( Char * configPDBName )

Parameters
Remarks

You can use this function to obtain the configuration database file name to pass into PalmLsnProcess.

To use the default configuration database file name lsncfg copy PalmLsnDefaultConfigDB (defined in PalmLsn.h) into the output parameter.

See also
Example

The following example, used for the Treo 600 smartphone implementation, returns the default configuration database name in the output parameter.

void PalmLsnGetConfigFileName( Char * configPDBName )
{
    StrCopy( configPDBName, PalmLsnDefaultConfigDB );
}