summaryrefslogtreecommitdiff
path: root/protocols/Sametime/src/StdAfx.h
blob: a5e7c9b64f19b4e6dcf74ac2f459a48d711ce11a (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// stdafx.h : include file for standard system include files,
//  or project specific include files that are used frequently, but
//      are changed infrequently
//

#pragma once

#pragma warning( disable : 4503 4786 )


// Windows
#define _WIN32_WINNT 0x501			// for QueueUserAPC
#include <windows.h>
#include <commctrl.h>
#include <process.h>
#include <malloc.h>
#include <stdio.h>
#include <time.h>
#include <string.h>


// STL
#include <queue>		// for	conference.cpp, messaging.cpp
#include <string>		// for	conference.cpp, userlist.cpp
#include <map>			// for	messaging.cpp
#include <fstream>		// for	userlist.cpp
#include <iostream>		// for	userlist.cpp


// Glib
//
// Subset of libs and includes from Glib v 2.26 from:
// http://ftp.gnome.org/pub/gnome/binaries/win32/glib/2.26/glib-dev_2.26.1-1_win32.zip
// http://ftp.gnome.org/pub/gnome/binaries/win32/glib/2.26/glib-dev_2.26.1-1_win64.zip
//
//
// dll files needed in main Miranda directory:
//
// x32
// libglib-2.0-0.dll   from http://ftp.gnome.org/pub/gnome/binaries/win32/glib/2.26/glib_2.26.1-1_win32.zip
// intl.dll            from http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/gettext-runtime_0.18.1.1-2_win32.zip
//
// x64
// libglib-2.0-0.dll   from http://ftp.gnome.org/pub/gnome/binaries/win64/glib/2.26/glib_2.26.1-1_win64.zip
// libintl-8.dll       from http://ftp.gnome.org/pub/gnome/binaries/win64/dependencies/gettext-runtime_0.18.1.1-2_win64.zip
// 
#include <glib.h>		//for	meanwhile and session.cpp


// Menwhile
// Sources of Meanwhile v 1.0.2 from
// http://meanwhile.sourceforge.net/
extern "C" {
#include <mw_session.h>
#include <mw_cipher.h>
#include <mw_st_list.h>
//#include <mw_util.h>
#include <mw_service.h>
#include <mw_channel.h>
#include <mw_srvc_im.h>
#include <mw_srvc_aware.h>
#include <mw_srvc_resolve.h>
#include <mw_srvc_store.h>
#include <mw_srvc_place.h>
#include <mw_srvc_ft.h>
#include <mw_srvc_conf.h>
#include <mw_error.h>
#include <mw_message.h>
};


// Miranda
#include <newpluginapi.h>
#include <m_system.h>
#include <m_protoint.h>
#include <m_options.h>
#include <m_skin.h>
#include <m_clist.h>
#include <m_message.h>
#include <statusmodes.h>
#include <m_langpack.h>
#include <m_netlib.h>
#include <m_database.h>
#include <m_protocols.h>
#include <m_protomod.h>
#include <m_protosvc.h>
#include <m_ignore.h>
#include <m_clui.h>
#include <m_clc.h>
#include <m_utils.h>
#include <m_idle.h>
#include <m_addcontact.h>
#include <m_popup.h>
#include <m_chat.h>
#include <m_genmenu.h>
#include <m_icolib.h>