summaryrefslogtreecommitdiffabout
path: root/gammu
Side-by-side diff
Diffstat (limited to 'gammu') (more/less context) (ignore whitespace changes)
-rw-r--r--gammu/emb/common/phone/at/siemens.h24
-rw-r--r--gammu/emb/common/phone/at/sonyeric.h18
2 files changed, 42 insertions, 0 deletions
diff --git a/gammu/emb/common/phone/at/siemens.h b/gammu/emb/common/phone/at/siemens.h
new file mode 100644
index 0000000..4645e7b
--- a/dev/null
+++ b/gammu/emb/common/phone/at/siemens.h
@@ -0,0 +1,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
diff --git a/gammu/emb/common/phone/at/sonyeric.h b/gammu/emb/common/phone/at/sonyeric.h
new file mode 100644
index 0000000..a2d1c5c
--- a/dev/null
+++ b/gammu/emb/common/phone/at/sonyeric.h
@@ -0,0 +1,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