blob: a2d1c5c950c30dc219dabab29f439c771fd8ed99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef sonyeric_h
#define sonyeric_h
GSM_Error SONYERIC_GetNextCalendar (GSM_StateMachine *, GSM_CalendarEntry *, bool);
GSM_Error SONYERIC_GetNextToDo (GSM_StateMachine *, GSM_ToDoEntry *, bool);
GSM_Error SONYERIC_GetToDoStatus (GSM_StateMachine *, GSM_ToDoStatus *);
GSM_Error SONYERIC_AddCalendarNote (GSM_StateMachine *, GSM_CalendarEntry *);
GSM_Error SONYERIC_AddToDo (GSM_StateMachine *, GSM_ToDoEntry *);
GSM_Error SONYERIC_DeleteAllToDo (GSM_StateMachine *);
GSM_Error SONYERIC_DelCalendarNote (GSM_StateMachine *, GSM_CalendarEntry *);
GSM_Error SONYERIC_GetCalendarStatus (GSM_StateMachine *, GSM_CalendarStatus *);
GSM_Error ERICSSON_ReplyGetDateLocale(GSM_Protocol_Message msg, GSM_StateMachine *s);
GSM_Error ERICSSON_ReplyGetTimeLocale(GSM_Protocol_Message msg, GSM_StateMachine *s);
GSM_Error ERICSSON_GetLocale(GSM_StateMachine *s, GSM_Locale *locale);
GSM_Error ERICSSON_SetLocale(GSM_StateMachine *s, GSM_Locale *locale);
#endif
|