From 4be6ed687450df24e86367181b68e9f90cb398c9 Mon Sep 17 00:00:00 2001 From: Olle Johansson Date: Tue, 11 Dec 2007 14:17:29 +0000 Subject: A lot of doxygen updates git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@92285 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- include/asterisk/localtime.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'include/asterisk/localtime.h') diff --git a/include/asterisk/localtime.h b/include/asterisk/localtime.h index 4d46198c7..25dd92e34 100644 --- a/include/asterisk/localtime.h +++ b/include/asterisk/localtime.h @@ -25,19 +25,19 @@ #define _ASTERISK_LOCALTIME_H struct ast_tm { - int tm_sec; /* Seconds. [0-60] (1 leap second) */ - int tm_min; /* Minutes. [0-59] */ - int tm_hour; /* Hours. [0-23] */ - int tm_mday; /* Day. [1-31] */ - int tm_mon; /* Month. [0-11] */ - int tm_year; /* Year - 1900. */ - int tm_wday; /* Day of week. [0-6] */ - int tm_yday; /* Days in year.[0-365] */ - int tm_isdst; /* DST. [-1/0/1]*/ - long int tm_gmtoff; /* Seconds east of UTC. */ - char *tm_zone; /* Timezone abbreviation. */ + int tm_sec; /*!< Seconds. [0-60] (1 leap second) */ + int tm_min; /*!< Minutes. [0-59] */ + int tm_hour; /*!< Hours. [0-23] */ + int tm_mday; /*!< Day. [1-31] */ + int tm_mon; /*!< Month. [0-11] */ + int tm_year; /*!< Year - 1900. */ + int tm_wday; /*!< Day of week. [0-6] */ + int tm_yday; /*!< Days in year.[0-365] */ + int tm_isdst; /*!< DST. [-1/0/1]*/ + long int tm_gmtoff; /*!< Seconds east of UTC. */ + char *tm_zone; /*!< Timezone abbreviation. */ /* NOTE: do NOT reorder this final item. The order needs to remain compatible with struct tm */ - int tm_usec; /* microseconds */ + int tm_usec; /*!< microseconds */ }; struct ast_tm *ast_localtime(const struct timeval *timep, struct ast_tm *p_tm, const char *zone); -- cgit v1.2.3