diff options
author | Dan Williams <dcbw@redhat.com> | 2010-02-22 17:35:28 -0800 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2010-02-22 17:35:28 -0800 |
commit | 928f8a9ff20934ad1e4383c5db6cb0b610a9fa4d (patch) | |
tree | 3451e9a73e266902ac6258acada73aca88c51dc3 /libqcdm/src/dm-commands.h | |
parent | bf0157162240134dbe18ad4ac70c842ca952483d (diff) |
qcdm: add Call Manager subsystem STATE_INFO command
Diffstat (limited to 'libqcdm/src/dm-commands.h')
-rw-r--r-- | libqcdm/src/dm-commands.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libqcdm/src/dm-commands.h b/libqcdm/src/dm-commands.h index f575b7ef..e638ccbf 100644 --- a/libqcdm/src/dm-commands.h +++ b/libqcdm/src/dm-commands.h @@ -219,5 +219,21 @@ struct DMCmdSwVersionRsp { } __attribute__ ((packed)); typedef struct DMCmdSwVersionRsp DMCmdSwVersionRsp; +/* DIAG_SUBSYS_CM_STATE_INFO subsys command */ +struct DMCmdSubsysCMStateInfoRsp { + DMCmdSubsysHeader header; + guint32 call_state; + guint32 oper_mode; + guint32 system_mode; + guint32 mode_pref; + guint32 band_pref; + guint32 roam_pref; + guint32 srv_domain_pref; + guint32 acq_order_pref; + guint32 hybrid_pref; + guint32 network_sel_mode_pref; +} __attribute__ ((packed)); +typedef struct DMCmdSubsysCMStateInfoRsp DMCmdSubsysCMStateInfoRsp; + #endif /* LIBQCDM_DM_COMMANDS_H */ |