stkutil: Add Send SMS response builder

This commit is contained in:
Andrzej Zaborowski 2010-05-16 16:05:39 +02:00 committed by Denis Kenzior
parent febeb5d9c5
commit 93bd75441c
2 changed files with 3 additions and 0 deletions

View File

@ -3208,6 +3208,8 @@ unsigned int stk_pdu_from_response(const struct stk_response *response,
&response->get_input.text,
NULL);
break;
case STK_COMMAND_TYPE_SEND_SMS:
break;
default:
return 0;
};

View File

@ -1026,6 +1026,7 @@ struct stk_response {
struct stk_response_generic display_text;
struct stk_response_get_inkey get_inkey;
struct stk_response_get_input get_input;
struct stk_response_generic send_sms;
};
void (*destructor)(struct stk_response *response);