diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-04-24 19:36:19 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-04-24 19:36:19 +0000 |
commit | b53f73d5762f09620ad95bfd81c74660c2077dad (patch) | |
tree | 53fde9d981ab7a8eaf0684cd09c963383f7866f5 /plugins/Alarms/src/stdafx.h | |
parent | 74eb6389e623a0bf0b50ada6424466f56219ca62 (diff) |
Alarms - common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@13103 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Alarms/src/stdafx.h')
-rw-r--r-- | plugins/Alarms/src/stdafx.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/plugins/Alarms/src/stdafx.h b/plugins/Alarms/src/stdafx.h new file mode 100644 index 0000000000..78cfb91ed3 --- /dev/null +++ b/plugins/Alarms/src/stdafx.h @@ -0,0 +1,54 @@ +#ifndef _COMMON_INC
+#define _COMMON_INC
+
+
+#define _WIN32_WINNT 0x0500
+#define _WIN32_IE 0x0400
+
+#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
+#define VC_EXTRALEAN
+
+#include <windows.h>
+#include <shellapi.h>
+
+#include <newpluginapi.h>
+#include <m_utils.h>
+#include <m_options.h>
+#include <m_skin.h>
+#include <m_protomod.h>
+#include <m_langpack.h>
+#include <m_popup.h>
+#include <m_idle.h>
+#include <m_clui.h>
+#include <m_cluiframes.h>
+#include <m_fontservice.h>
+#include <m_icolib.h>
+#include <win2k.h>
+
+#include <m_toptoolbar.h>
+#include <m_alarms.h>
+
+#include "resource.h"
+#include "version.h"
+
+#define MODULE "Alarm"
+
+extern HINSTANCE hInst;
+
+extern HANDLE hTopToolbarButton;
+
+typedef struct ALARM_tag {
+ unsigned short id;
+ TCHAR *szTitle;
+ TCHAR *szDesc;
+ Occurrence occurrence;
+ BOOL snoozer;
+ SYSTEMTIME time;
+ unsigned short action;
+ TCHAR *szCommand;
+ TCHAR *szCommandParams;
+ BYTE sound_num;
+ int flags;
+} ALARM;
+
+#endif
|