1 #ifndef __helper_message_display_h__
2 #define __helper_message_display_h__
4 #include <gammu-message.h>
5 #include <gammu-statemachine.h>
6 #include <gammu-backup.h>
9 * Prints location information about message.
11 void PrintSMSLocation(const GSM_SMSMessage
*sms
, const GSM_SMSFolders
*folders
);
13 #ifdef GSM_ENABLE_BACKUP
15 * Prints single phone number optionally showing name of contact from backup data.
17 void PrintPhoneNumber(const unsigned char *number
, const GSM_Backup
*Info
);
20 * Prints single phone number optionally showing name of contact from backup data.
22 void PrintPhoneNumber(const unsigned char *number
, const void *Info
);
25 #ifdef GSM_ENABLE_BACKUP
26 void DisplayMultiSMSInfo (GSM_MultiSMSMessage
*sms
, gboolean eachsms
, gboolean ems
, const GSM_Backup
*Info
, GSM_StateMachine
*sm
);
28 void DisplayMultiSMSInfo (GSM_MultiSMSMessage
*sms
, gboolean eachsms
, gboolean ems
, const void *Info
, GSM_StateMachine
*sm
);
31 GSM_Error
DisplaySMSFrame(GSM_SMSMessage
*SMS
, GSM_StateMachine
*sm
);