blob: a446c6c721d334239a4fa419eec17a4e1fedd9a8 (
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
|
//#ifndef __COMMON_INC
//#define __COMMON_INC
#define MODULE "MessageNotify"
#define _WIN32_WINNT 0x400 // for QueueUserAPC
#define _WIN32_IE 0x300 // for InitCommonControlsEx
#include <stdio.h>
#include <windows.h>
#include <process.h>
#include <malloc.h>
#include "resource.h"
#include <commctrl.h>
#include <newpluginapi.h>
#include <m_system.h>
#include <m_langpack.h>
#include <m_options.h>
#include <m_idle.h>
#include <m_skin.h>
#include <m_database.h>
#include <m_clist.h>
#include <m_message.h>
#include <m_utils.h>
#include <m_ignore.h>
#include <m_updater.h>
#include <m_metacontacts.h>
extern HINSTANCE hInst;
extern PLUGINLINK *pluginLink;
extern HANDLE mainThread;
void StartFocusTimer();
void StopFocusTimer();
#ifndef MIID_MESSAGENOTIFY
#define MIID_MESSAGENOTIFY {0x9b2eb930, 0xbcff, 0x4cbf, { 0x8f, 0x2d, 0xf7, 0xca, 0x8b, 0x8f, 0x17, 0xfd}}
#endif
//#endif
|