diff options
author | Dan Williams <dcbw@redhat.com> | 2010-02-22 16:45:50 -0800 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2010-02-22 16:45:50 -0800 |
commit | bf0157162240134dbe18ad4ac70c842ca952483d (patch) | |
tree | 3c79e56902c45a19184f8b4fb6798556671c8fe1 | |
parent | c937d1399bd5185c813ef02109834fcac2dc2898 (diff) |
qcdm: add enums for STATUS rx_state values
-rw-r--r-- | libqcdm/src/commands.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libqcdm/src/commands.h b/libqcdm/src/commands.h index bc19334c..f5568cbc 100644 --- a/libqcdm/src/commands.h +++ b/libqcdm/src/commands.h @@ -52,6 +52,15 @@ QCDMResult *qcdm_cmd_esn_result (const char *buf, /**********************************************************************/ +/* Values for QCDM_CMD_CDMA_STATUS_ITEM_RX_STATE */ +enum { + QCDM_CMD_CDMA_STATUS_RX_STATE_NO_SERVICE = 0, + QCDM_CMD_CDMA_STATUS_RX_STATE_IDLE = 1, + QCDM_CMD_CDMA_STATUS_RX_STATE_ACCESS = 2, + QCDM_CMD_CDMA_STATUS_RX_STATE_PAGING = 3, + QCDM_CMD_CDMA_STATUS_RX_STATE_TRAFFIC = 4, +}; + #define QCDM_CMD_CDMA_STATUS_ITEM_ESN "esn" #define QCDM_CMD_CDMA_STATUS_ITEM_RX_STATE "rx-state" #define QCDM_CMD_CDMA_STATUS_ITEM_ENTRY_REASON "entry-reason" |