TIM SDK
TIM API C
|
|
Config data.
Object type config_data.
Functions | |
ta_e_result_code_t | ta_config_data_get_receipt_header (ta_object_t config_data, ta_object_t *receipt_header) |
List of text lines forming the receipt header. More... | |
ta_e_result_code_t | ta_config_data_get_language (ta_object_t config_data, ta_object_t *language) |
Language to use for printing receipts. More... | |
ta_e_result_code_t ta_config_data_get_language | ( | ta_object_t | config_data, |
ta_object_t * | language | ||
) |
Language to use for printing receipts.
[in] | config_data | Object instance of type config_data. |
[out] | language | Pointer to variable to write object instance to. Object instance is of type string and is not retained. |
ta_c_rc_ok | Object instance written to language. |
ta_c_rc_invalid_argument | config_data is ta_invalid_object. |
ta_c_rc_invalid_argument | config_data is not of type config_data. |
ta_c_rc_invalid_argument | language is null-pointer. |
ta_e_result_code_t ta_config_data_get_receipt_header | ( | ta_object_t | config_data, |
ta_object_t * | receipt_header | ||
) |
List of text lines forming the receipt header.
[in] | config_data | Object instance of type config_data. |
[out] | receipt_header | Pointer to variable to write object instance to. Object instance is of type list and is not retained. The list contains elements of type string. |
ta_c_rc_ok | Object instance written to receipt_header. |
ta_c_rc_invalid_argument | config_data is ta_invalid_object. |
ta_c_rc_invalid_argument | config_data is not of type config_data. |
ta_c_rc_invalid_argument | receipt_header is null-pointer. |