Add command --get-msisdn for getting phone number
[project/uqmi.git] / commands.h
index 44971c5..9d492e7 100644 (file)
@@ -34,6 +34,7 @@ struct uqmi_cmd {
        __uqmi_command(version, get-versions, no, QMI_SERVICE_CTL), \
        __uqmi_command(set_client_id, set-client-id, required, CMD_TYPE_OPTION), \
        __uqmi_command(get_client_id, get-client-id, required, QMI_SERVICE_CTL), \
+       __uqmi_command(ctl_set_data_format, set-data-format, required, QMI_SERVICE_CTL), \
        __uqmi_wds_commands, \
        __uqmi_dms_commands, \
        __uqmi_nas_commands, \
@@ -46,9 +47,10 @@ enum uqmi_command {
 };
 #undef __uqmi_command
 
+extern bool single_line;
 extern const struct uqmi_cmd_handler uqmi_cmd_handler[];
 void uqmi_add_command(char *arg, int longidx);
 bool uqmi_run_commands(struct qmi_dev *qmi);
-void uqmi_add_error(const char *msg);
+int uqmi_add_error(const char *msg);
 
 #endif