summaryrefslogtreecommitdiff
path: root/plugins/ExternalAPI/m_alarms.h
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-06-23 19:41:40 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-06-23 19:41:40 +0000
commit253ed95fac75f17da256524e9102c11012fea38f (patch)
tree76c106ef77ddebdd79e1520b17ded64b3ce9d2f2 /plugins/ExternalAPI/m_alarms.h
parent72181fe66c73ca0bdc764d129b24305249fabb48 (diff)
Alarms Unicode. Compiled but not tested
git-svn-id: http://svn.miranda-ng.org/main/trunk@586 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ExternalAPI/m_alarms.h')
-rw-r--r--plugins/ExternalAPI/m_alarms.h8
1 files changed, 4 insertions, 4 deletions
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;