diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-23 19:41:22 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-23 19:41:22 +0000 |
commit | 72181fe66c73ca0bdc764d129b24305249fabb48 (patch) | |
tree | 43379eb9b01a7de8e95c0ad873672371f403c12f /plugins/Alarms/common.h | |
parent | 737f526a855d0fc814c6e5fa0fb3f908c8ad83bb (diff) |
Alarms Unicode. Compiled but not tested
git-svn-id: http://svn.miranda-ng.org/main/trunk@585 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Alarms/common.h')
-rw-r--r-- | plugins/Alarms/common.h | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/plugins/Alarms/common.h b/plugins/Alarms/common.h index d675ab1bf1..b86cd036c0 100644 --- a/plugins/Alarms/common.h +++ b/plugins/Alarms/common.h @@ -14,9 +14,6 @@ #include <stdlib.h>
#include <commctrl.h>
-#include "resource.h"
-#include "version.h"
-
#include <newpluginapi.h>
#include <m_system.h>
#include <m_database.h>
@@ -29,23 +26,22 @@ #include <m_popup.h>
#include <m_utils.h>
#include <m_idle.h>
-
#include <m_clist.h>
#include <m_clui.h>
#include <m_clc.h>
-
#include <m_cluiframes.h>
#include <m_genmenu.h>
+#include <m_fontservice.h>
+#include <m_icolib.h>
+#include <win2k.h>
#include <m_toptoolbar.h>
#include <m_trigger.h>
-
-#include <m_fontservice.h>
#include <m_updater.h>
-
#include <m_alarms.h>
-#include <m_icolib.h>
+#include "resource.h"
+#include "version.h"
#define MODULE "Alarm"
@@ -56,14 +52,14 @@ extern HANDLE hTopToolbarButton; typedef struct ALARM_tag {
unsigned short id;
- char *szTitle;
- char *szDesc;
+ TCHAR *szTitle;
+ TCHAR *szDesc;
Occurrence occurrence;
BOOL snoozer;
SYSTEMTIME time;
unsigned short action;
- char *szCommand;
- char *szCommandParams;
+ TCHAR *szCommand;
+ TCHAR *szCommandParams;
BYTE sound_num;
int flags;
DWORD trigger_id;
|