diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-04 08:02:51 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-04 08:02:51 +0000 |
commit | 0624d6b4e9b82ccfaabf7a20d00c474a09354e8d (patch) | |
tree | 3fcd9ec7f6f5c1d0cd76ce62f83169020ea5fb02 /plugins/Alarms/common.h | |
parent | 5544a559d7eea6b6da2a9e512e3480a10f31714d (diff) |
Alarms: changed folder structure
git-svn-id: http://svn.miranda-ng.org/main/trunk@750 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Alarms/common.h')
-rw-r--r-- | plugins/Alarms/common.h | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/plugins/Alarms/common.h b/plugins/Alarms/common.h deleted file mode 100644 index 36ac58ea3b..0000000000 --- a/plugins/Alarms/common.h +++ /dev/null @@ -1,71 +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
-
-#include <windows.h>
-#include <shellapi.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <commctrl.h>
-
-#include <newpluginapi.h>
-#include <m_system.h>
-#include <m_database.h>
-#include <m_options.h>
-#include <m_skin.h>
-#include <m_contacts.h>
-#include <m_protomod.h>
-#include <m_protosvc.h>
-#include <m_langpack.h>
-#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_updater.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;
- DWORD trigger_id;
-} ALARM;
-
-#ifndef MIID_ALARMS
-#define MIID_ALARMS {0x60ebaad1, 0x8d95, 0x4966, { 0x8b, 0xe3, 0xb1, 0xed, 0xaf, 0xa2, 0x11, 0xab}}
-#endif
-
-#endif
|