summaryrefslogtreecommitdiff
path: root/plugins/Alarms/src/common.h
blob: c2116c679b1be5a20526d1e2dc75d603b8daa354 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#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_database.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