aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmicli/qmicli-helpers.h
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2014-05-21 11:29:21 +0200
committerAleksander Morgado <aleksander@aleksander.es>2014-05-21 11:42:04 +0200
commit8e24ca194d885f882398d3212283bffef64c9959 (patch)
treed86fee6e04e391b8ae6e6f4fba48f77008d0f63b /src/qmicli/qmicli-helpers.h
parenta4d592e81ca8bddeae923351b009b61f6dd7fce0 (diff)
downloadexternal_libqmi-8e24ca194d885f882398d3212283bffef64c9959.zip
external_libqmi-8e24ca194d885f882398d3212283bffef64c9959.tar.gz
external_libqmi-8e24ca194d885f882398d3212283bffef64c9959.tar.bz2
cli,wda: new '--wda-set-data-format' action
For now, we just allow setting the Link Layer Protocol. If we ever update the command to allow more or different settings, we can do so by just making it a list of comma separated values.
Diffstat (limited to 'src/qmicli/qmicli-helpers.h')
-rw-r--r--src/qmicli/qmicli-helpers.h36
1 files changed, 19 insertions, 17 deletions
diff --git a/src/qmicli/qmicli-helpers.h b/src/qmicli/qmicli-helpers.h
index 22ff330..72f8825 100644
--- a/src/qmicli/qmicli-helpers.h
+++ b/src/qmicli/qmicli-helpers.h
@@ -29,23 +29,25 @@ gchar *qmicli_get_raw_data_printable (const GArray *data,
gsize max_line_length,
const gchar *new_line_prefix);
-gboolean qmicli_read_pin_id_from_string (const gchar *str,
- QmiDmsUimPinId *out);
-gboolean qmicli_read_operating_mode_from_string (const gchar *str,
- QmiDmsOperatingMode *out);
-gboolean qmicli_read_rat_mode_pref_from_string (const gchar *str,
- QmiNasRatModePreference *out);
-gboolean qmicli_read_facility_from_string (const gchar *str,
- QmiDmsUimFacility *out);
-gboolean qmicli_read_enable_disable_from_string (const gchar *str,
- gboolean *out);
-gboolean qmicli_read_firmware_id_from_string (const gchar *str,
- QmiDmsFirmwareImageType *out_type,
- guint *out_index);
-gboolean qmicli_read_radio_interface_from_string (const gchar *str,
- QmiNasRadioInterface *out);
-gboolean qmicli_read_net_open_flags_from_string (const gchar *str,
- QmiDeviceOpenFlags *out);
+gboolean qmicli_read_pin_id_from_string (const gchar *str,
+ QmiDmsUimPinId *out);
+gboolean qmicli_read_operating_mode_from_string (const gchar *str,
+ QmiDmsOperatingMode *out);
+gboolean qmicli_read_rat_mode_pref_from_string (const gchar *str,
+ QmiNasRatModePreference *out);
+gboolean qmicli_read_facility_from_string (const gchar *str,
+ QmiDmsUimFacility *out);
+gboolean qmicli_read_enable_disable_from_string (const gchar *str,
+ gboolean *out);
+gboolean qmicli_read_firmware_id_from_string (const gchar *str,
+ QmiDmsFirmwareImageType *out_type,
+ guint *out_index);
+gboolean qmicli_read_radio_interface_from_string (const gchar *str,
+ QmiNasRadioInterface *out);
+gboolean qmicli_read_net_open_flags_from_string (const gchar *str,
+ QmiDeviceOpenFlags *out);
+gboolean qmicli_read_link_layer_protocol_from_string (const gchar *str,
+ QmiWdaLinkLayerProtocol *out);
gboolean qmicli_read_non_empty_string (const gchar *str,
const gchar *description,