From 253ed95fac75f17da256524e9102c11012fea38f Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 23 Jun 2012 19:41:40 +0000 Subject: Alarms Unicode. Compiled but not tested git-svn-id: http://svn.miranda-ng.org/main/trunk@586 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/ExternalAPI/m_alarms.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/ExternalAPI') diff --git a/plugins/ExternalAPI/m_alarms.h b/plugins/ExternalAPI/m_alarms.h index 64a77bc2c7..82b376af86 100644 --- a/plugins/ExternalAPI/m_alarms.h +++ b/plugins/ExternalAPI/m_alarms.h @@ -24,14 +24,14 @@ typedef enum { #define ALF_NOSNOOZE 0x10 // do not allow snoozing of this alarm typedef struct { - char *szTitle; - char *szDesc; + TCHAR *szTitle; + TCHAR *szDesc; Occurrence occurrence; BOOL snoozer; // this alarm is a 'once-off', the result of the user pressing the 'snooze' button - the time field no longer contains the original alarm time SYSTEMTIME time; // the time the alarm is triggered at - different fields are valid depending on what the 'occurence' value is set to (see definition of Occurence type above) unsigned short action; // bitwise OR of AAF_* constants above - char *szCommand; // passed to ShellExecute (if action & AAF_COMMAND) when the alarm is triggered - char *szCommandParams; // passed as parameters for above command + TCHAR *szCommand; // passed to ShellExecute (if action & AAF_COMMAND) when the alarm is triggered + TCHAR *szCommandParams; // passed as parameters for above command BYTE sound_num; // use alarm sound 1, 2, or 3 (if action & AAF_SOUND) (4 == speak, version 0.0.7.0+) int flags; // ALF_* above } ALARMINFO; -- cgit v1.2.3