summaryrefslogtreecommitdiff
path: root/plugins/Alarms/src/common.h
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2015-04-24 19:36:19 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2015-04-24 19:36:19 +0000
commitb53f73d5762f09620ad95bfd81c74660c2077dad (patch)
tree53fde9d981ab7a8eaf0684cd09c963383f7866f5 /plugins/Alarms/src/common.h
parent74eb6389e623a0bf0b50ada6424466f56219ca62 (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/common.h')
-rw-r--r--plugins/Alarms/src/common.h55
1 files changed, 0 insertions, 55 deletions
diff --git a/plugins/Alarms/src/common.h b/plugins/Alarms/src/common.h
deleted file mode 100644
index 76b82b44b9..0000000000
--- a/plugins/Alarms/src/common.h
+++ /dev/null
@@ -1,55 +0,0 @@
-#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
-#define _CRT_SECURE_NO_DEPRECATE
-
-#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