summaryrefslogtreecommitdiff
path: root/plugins/Alarms/src/stdafx.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Alarms/src/stdafx.h')
-rw-r--r--plugins/Alarms/src/stdafx.h54
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