1 /**
2  * @addtogroup Elm_Calendar
3  *
4  * @{
5  */
6 
7 /**
8  * This callback type is used to format the string that will be used
9  * to display month and year.
10  *
11  * @param stime Struct representing time.
12  * @return String representing time that will be set to calendar's text.
13  *
14  * @see elm_calendar_format_function_set()
15  */
16 typedef char * (*Elm_Calendar_Format_Cb)(struct tm *stime);
17 
18 
19 /**
20  * @}
21  */
22