blob: 1accfe70a6bfc96354ed9ed10a642f29eb736e43 (
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
|
//#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;
extern HANDLE popupWindowList;
void StartFocusTimer();
void StopFocusTimer();
//#endif
|