TIM SDK
TIM API C
|
|
Information about a supported application.
Object type application.
Functions | |
ta_e_result_code_t | ta_application_get_aid (ta_object_t application, ta_object_t *aid) |
Acquirer identifier. Uniquely identifies the acquirer. More... | |
ta_e_result_code_t | ta_application_get_label (ta_object_t application, ta_object_t *label) |
Contains the application label of the currently used application. More... | |
ta_e_result_code_t ta_application_get_aid | ( | ta_object_t | application, |
ta_object_t * | aid | ||
) |
Acquirer identifier. Uniquely identifies the acquirer.
[in] | application | Object instance of type application. |
[out] | aid | Pointer to variable to write object instance to. Object instance is of type string and is not retained. Object instance is ta_invalid_object if value is not set in application. |
ta_c_rc_ok | Object instance written to aid. |
ta_c_rc_invalid_argument | application is ta_invalid_object. |
ta_c_rc_invalid_argument | application is not of type application. |
ta_c_rc_invalid_argument | aid is ta_invalid_object. |
ta_e_result_code_t ta_application_get_label | ( | ta_object_t | application, |
ta_object_t * | label | ||
) |
Contains the application label of the currently used application.
[in] | application | Object instance of type application. |
[out] | label | Pointer to variable to write object instance to. Object instance is of type string and is not retained. Object instance is ta_invalid_object if value is not set in application. |
ta_c_rc_ok | Object instance written to label. |
ta_c_rc_invalid_argument | application is ta_invalid_object. |
ta_c_rc_invalid_argument | application is not of type application. |
ta_c_rc_invalid_argument | label is ta_invalid_object. |
ta_c_rc_invalid_argument | label is not of type integer. |