diff options
author | Denis Kenzior <denkenz@gmail.com> | 2010-02-27 10:09:30 -0600 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2010-02-27 10:09:30 -0600 |
commit | 0418a682b822715e37ab21411a74be4d7d3987bb (patch) | |
tree | bbee6ab60c28dd8e1294d776120a2837684ba5be /src | |
parent | 7be80ef131d15304752e308ee906e1e6671ced86 (diff) | |
download | ofono-0418a682b822715e37ab21411a74be4d7d3987bb.tar.bz2 |
Add duration type enum
Diffstat (limited to 'src')
-rw-r--r-- | src/stkutil.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stkutil.h b/src/stkutil.h index 9fd71469..96e321f0 100644 --- a/src/stkutil.h +++ b/src/stkutil.h @@ -185,6 +185,12 @@ enum stk_device_identity_type { STK_DEVICE_IDENTITY_TYPE_NETWORK = 0x83, }; +enum stk_duration_type { + STK_DURATION_TYPE_MINUTES = 0x00, + STK_DURATION_TYPE_SECONDS = 0x01, + STK_DURATION_TYPE_SECOND_TENTHS = 0x02, +}; + struct stk_command_display_text { char *text; unsigned char icon_id; |