author | zautrix <zautrix> | 2004-10-05 11:31:59 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-05 11:31:59 (UTC) |
commit | f002814959b88dc7786bbb4299ab6252a6fa8e0d (patch) (unidiff) | |
tree | 9433421b0f1875aff617f36b2432a24025b29a8e /gammu | |
parent | 50ab40e1e02ad7c65c17a78d08116a808b1257aa (diff) | |
download | kdepimpi-f002814959b88dc7786bbb4299ab6252a6fa8e0d.zip kdepimpi-f002814959b88dc7786bbb4299ab6252a6fa8e0d.tar.gz kdepimpi-f002814959b88dc7786bbb4299ab6252a6fa8e0d.tar.bz2 |
added missing headers
-rw-r--r-- | gammu/emb/common/phone/at/siemens.h | 24 | ||||
-rw-r--r-- | gammu/emb/common/phone/at/sonyeric.h | 18 |
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 @@ | |||
1 | #ifndef siemens_h | ||
2 | #define siemens_h | ||
3 | |||
4 | #include "../../gsmstate.h" | ||
5 | |||
6 | GSM_Error SIEMENS_ReplyGetBitmap(GSM_Protocol_Message, GSM_StateMachine *); | ||
7 | GSM_Error SIEMENS_ReplySetBitmap(GSM_Protocol_Message, GSM_StateMachine *); | ||
8 | GSM_Error SIEMENS_ReplyGetRingtone(GSM_Protocol_Message, GSM_StateMachine *); | ||
9 | GSM_Error SIEMENS_ReplySetRingtone(GSM_Protocol_Message, GSM_StateMachine *); | ||
10 | GSM_Error SIEMENS_GetBitmap (GSM_StateMachine *, GSM_Bitmap *); | ||
11 | GSM_Error SIEMENS_SetBitmap (GSM_StateMachine *, GSM_Bitmap *); | ||
12 | GSM_Error SIEMENS_GetRingtone (GSM_StateMachine *, GSM_Ringtone *, bool); | ||
13 | GSM_Error SIEMENS_SetRingtone (GSM_StateMachine *, GSM_Ringtone *, int *); | ||
14 | |||
15 | GSM_Error SIEMENS_ReplyGetNextCalendar(GSM_Protocol_Message, GSM_StateMachine *); | ||
16 | GSM_Error SIEMENS_ReplyAddCalendarNote(GSM_Protocol_Message, GSM_StateMachine *); | ||
17 | GSM_Error SIEMENS_ReplyDelCalendarNote(GSM_Protocol_Message, GSM_StateMachine *); | ||
18 | GSM_Error SIEMENS_GetNextCalendar(GSM_StateMachine *, GSM_CalendarEntry *, bool); | ||
19 | GSM_Error SIEMENS_AddCalendarNote(GSM_StateMachine *, GSM_CalendarEntry *); | ||
20 | GSM_Error SIEMENS_DelCalendarNote(GSM_StateMachine *, GSM_CalendarEntry *); | ||
21 | |||
22 | GSM_Error SIEMENS_ReplyGetMemory(GSM_Protocol_Message, GSM_StateMachine *); | ||
23 | |||
24 | #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 @@ | |||
1 | #ifndef sonyeric_h | ||
2 | #define sonyeric_h | ||
3 | |||
4 | GSM_Error SONYERIC_GetNextCalendar(GSM_StateMachine *, GSM_CalendarEntry *, bool); | ||
5 | GSM_Error SONYERIC_GetNextToDo (GSM_StateMachine *, GSM_ToDoEntry *, bool); | ||
6 | GSM_Error SONYERIC_GetToDoStatus(GSM_StateMachine *, GSM_ToDoStatus *); | ||
7 | GSM_Error SONYERIC_AddCalendarNote(GSM_StateMachine *, GSM_CalendarEntry *); | ||
8 | GSM_Error SONYERIC_AddToDo (GSM_StateMachine *, GSM_ToDoEntry *); | ||
9 | GSM_Error SONYERIC_DeleteAllToDo(GSM_StateMachine *); | ||
10 | GSM_Error SONYERIC_DelCalendarNote(GSM_StateMachine *, GSM_CalendarEntry *); | ||
11 | GSM_Error SONYERIC_GetCalendarStatus(GSM_StateMachine *, GSM_CalendarStatus *); | ||
12 | |||
13 | GSM_Error ERICSSON_ReplyGetDateLocale(GSM_Protocol_Message msg, GSM_StateMachine *s); | ||
14 | GSM_Error ERICSSON_ReplyGetTimeLocale(GSM_Protocol_Message msg, GSM_StateMachine *s); | ||
15 | GSM_Error ERICSSON_GetLocale(GSM_StateMachine *s, GSM_Locale *locale); | ||
16 | GSM_Error ERICSSON_SetLocale(GSM_StateMachine *s, GSM_Locale *locale); | ||
17 | |||
18 | #endif | ||