diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-10-02 14:15:21 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-10-02 14:15:21 +0800 |
commit | 829fd1f2baf9e92511683982d2a51244301c4837 (patch) | |
tree | 29fa870f531097a7cd8d660d342ed890b4dd76e0 /rtclient | |
parent | f9e3eb4c9cf83d724d510f20391ab8f88f68fd71 (diff) |
No result namespace
but the argument name should still explains that the format is a result one
Diffstat (limited to 'rtclient')
-rw-r--r-- | rtclient/ticket.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/rtclient/ticket.h b/rtclient/ticket.h index 9aaf656..ec4d422 100644 --- a/rtclient/ticket.h +++ b/rtclient/ticket.h @@ -6,10 +6,10 @@ struct rtclient_ticket { char *subject; }; -enum rtclient_ticket_result_format { - RTCLIENT_TICKET_RESULT_FORMAT_S = 0 - , RTCLIENT_TICKET_RESULT_FORMAT_I - , RTCLIENT_TICKET_RESULT_FORMAT_L +enum rtclient_ticket_format { + RTCLIENT_TICKET_FORMAT_S = 0 + , RTCLIENT_TICKET_FORMAT_I + , RTCLIENT_TICKET_FORMAT_L }; enum rtclient_ticket_history_type { @@ -78,7 +78,7 @@ extern "C" { , const char *text); void rtclient_ticket_history(struct rtclient_ticket_history_list **listptr , unsigned int id - , enum rtclient_ticket_result_format result_format); + , enum rtclient_ticket_format format); void rtclient_ticket_history_free (struct rtclient_ticket_history *history); void rtclient_ticket_history_list_free |