From 0418a682b822715e37ab21411a74be4d7d3987bb Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Sat, 27 Feb 2010 10:09:30 -0600 Subject: [PATCH] Add duration type enum --- src/stkutil.h | 6 ++++++ 1 file changed, 6 insertions(+) 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;