blob: 0bc8575e9d12737bec429c8a9462377617391230 (
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
|
#ifndef _COMMON_INC
#define _COMMON_INC
#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_protosvc.h>
#include <m_langpack.h>
#include <m_popup.h>
#include <m_idle.h>
#include <m_clui.h>
#include <m_cluiframes.h>
#include <m_clistint.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
|