summaryrefslogtreecommitdiff
path: root/plugins/MirandaG15/src/StdAfx.h
blob: 42620aaa32ee3dc3bb33b24d12e459c34085ec9b (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
#ifndef _STDAFX_H_
#define _STDAFX_H_

#define APP_SHORTNAME __PLUGIN_NAME

/* Common header files */
#include <assert.h>

#include <Windows.h>
#include <CommCtrl.h>
#include <time.h>
#include <string>
#include <vector>
#include <queue>
#include <list>

using namespace std;

#include <newpluginapi.h>
#include <m_message.h>
#include <m_protosvc.h>
#include <m_database.h>
#include <m_options.h>
#include <m_clistint.h>
#include <m_protocols.h>
#include <m_skin.h>
#include <m_chat.h>
#include <m_idle.h>
#include <m_metacontacts.h>
#include <m_langpack.h>

#define IDF_SHORT		0x2 // short idle mode
#define IDF_LONG		0x4 // long idle mode
#define IDF_ONFORCE	   0x10

#define ASSERT assert

struct CMPlugin : public PLUGIN<CMPlugin>
{
	CMPlugin() :
		PLUGIN<CMPlugin>(nullptr)
	{}
};

#include "LCDFramework/LCDFramework.h"

#include "CEvent.h"

#include "resource.h"
#include "version.h"

#endif