summaryrefslogtreecommitdiff
path: root/protocols/Xfire/src/stdafx.h
blob: eb20af3e4d2dfe016dcc09d414360bb6952c62a1 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// stdafx.h : Includedatei für Standardsystem-Includedateien
// oder häufig verwendete projektspezifische Includedateien,
// die nur in unregelmäßigen Abständen geändert werden.
//

#pragma once

#include <sys/types.h>
#include <stdio.h>
#include <cstdlib>
#include <tchar.h>
#include <iostream>
#include <string>

#define uint unsigned int
#define socklen_t int

#define NO_PTHREAD

#pragma warning(disable:4267)
#pragma warning(disable:4244)
#pragma warning(disable:4312)
#pragma warning(disable:4099)
#pragma warning(disable:4311)
#pragma comment(lib,"ws2_32.lib")

#ifndef NO_PTHREAD
#pragma comment(lib,"pthreads.lib")
#endif

#pragma comment(lib,"user32.lib")
#pragma comment(lib,"gdi32.lib")

#include <winsock2.h>
#include <gdiplus.h>
#include <Wininet.h>
#include <commctrl.h>
#include <stdio.h>
#include <time.h>
#include <stddef.h>
#include <process.h>
#include <string.h>
#include <tlhelp32.h>
#include <Psapi.h>
#include <string.h>
#include <Iphlpapi.h>

#include "resource.h"

//Miranda SDK headers
#include <newpluginapi.h>
#include <m_clist.h>
#include <m_clui.h>
#include <m_skin.h>
#include <m_langpack.h>
#include <m_protomod.h>
#include <m_database.h>
#include <m_system.h>
#include <m_protocols.h>
#include <m_protomod.h>
#include <m_protosvc.h>
#include <m_protoint.h>
#include <m_userinfo.h>
#include <m_options.h>
#include <m_utils.h>
#include <m_ignore.h>
#include <m_netlib.h>
#include <m_avatars.h>
#include <m_folders.h>
#include <m_assocmgr.h>
#include <m_icolib.h>
#include <m_genmenu.h>
#include <m_extraicons.h>
#include <m_xstatus.h>