The palm_lsn_ret enumeration specifies possible return codes.
typedef enum {
PalmLsnOk = errNone,
PalmLsnMissingConfig = appErrorClass,
PalmLsnProblemReadingConfig,
PalmLsnProblemParsingCmd,
PalmLsnOutOfMemory,
PalmLsnUnrecognizedAction,
PalmLsnRunMissingApp
} palm_lsn_ret;| Name | Description |
|---|---|
| PalmLsnOk | Indicates a successful method call. This value contains the same value as errNone, which indicates no error. |
| PalmLsnMissingConfig | Indicates a missing Listener configuration database. This field contains the same value as the appErrorClass error code, indicating an application-defined error. |
| PalmLsnProblemReadingConfig | Indicates an error reading the Listener configuration database. |
| PalmLsnProblemParsingCmd | Indicates an inability to process the command stored in the Listener configuration database. |
| PalmLsnOutOfMemory | Indicates the method does not run to completion due to an error that occurred while allocating memory for message processing. |
| PalmLsnUnrecognizedAction | Indicates the Listener does not support an action specified in the Listener configuration database. |
| PalmLsnRunMissingApp | Indicates The Listener cannot launch the application specified by the run action command. |
| Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |