1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef siemens_h
#define siemens_h
#include "../../gsmstate.h"
GSM_Error SIEMENS_ReplyGetBitmap (GSM_Protocol_Message, GSM_StateMachine *);
GSM_Error SIEMENS_ReplySetBitmap (GSM_Protocol_Message, GSM_StateMachine *);
GSM_Error SIEMENS_ReplyGetRingtone (GSM_Protocol_Message, GSM_StateMachine *);
GSM_Error SIEMENS_ReplySetRingtone (GSM_Protocol_Message, GSM_StateMachine *);
GSM_Error SIEMENS_GetBitmap (GSM_StateMachine *, GSM_Bitmap *);
GSM_Error SIEMENS_SetBitmap (GSM_StateMachine *, GSM_Bitmap *);
GSM_Error SIEMENS_GetRingtone (GSM_StateMachine *, GSM_Ringtone *, bool);
GSM_Error SIEMENS_SetRingtone (GSM_StateMachine *, GSM_Ringtone *, int *);
GSM_Error SIEMENS_ReplyGetNextCalendar (GSM_Protocol_Message, GSM_StateMachine *);
GSM_Error SIEMENS_ReplyAddCalendarNote (GSM_Protocol_Message, GSM_StateMachine *);
GSM_Error SIEMENS_ReplyDelCalendarNote (GSM_Protocol_Message, GSM_StateMachine *);
GSM_Error SIEMENS_GetNextCalendar (GSM_StateMachine *, GSM_CalendarEntry *, bool);
GSM_Error SIEMENS_AddCalendarNote (GSM_StateMachine *, GSM_CalendarEntry *);
GSM_Error SIEMENS_DelCalendarNote (GSM_StateMachine *, GSM_CalendarEntry *);
GSM_Error SIEMENS_ReplyGetMemory (GSM_Protocol_Message, GSM_StateMachine *);
#endif
|