Result codes that can be returned by a function.
Synopsis:
#include <bbmsp/bbmsp.h>
typedef enum {
BBMSP_SUCCESS = 0
BBMSP_ASYNC = 1
BBMSP_FAILURE = -1
} bbmsp_result_t;
Data:
- BBMSP_SUCCESS
- Indicates that a function has completed successfully.
Since: BlackBerry 10.0.0
- BBMSP_ASYNC
- Indicates that an operation will be completed asynchronously.
- An event is pushed when the operation completes successfully.
Since: BlackBerry 10.0.0
- BBMSP_FAILURE
- Indicates that a function did not complete successfully.
- When the errno value is set, its value indicates the reason for the failure.
Since: BlackBerry 10.0.0
Library:
libbbmsp (For the qcc command, use the -l bbmsp option to link against this library)