blob: 1250b10fd77695ae64a75e3fd2b79eaf62d7ce8f (
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
|
#ifndef _COMMON_H_
#define _COMMON_H_
#include <winsock2.h>
#include <windows.h>
#include <windns.h>
#include <time.h>
#include <string>
#include <sstream>
#include <iomanip>
#include <vector>
#include <regex>
#include <map>
#include <newpluginapi.h>
#include <m_protoint.h>
#include <m_protomod.h>
#include <m_protosvc.h>
#include <m_database.h>
#include <m_langpack.h>
#include <m_clist.h>
#include <m_options.h>
#include <m_netlib.h>
#include <m_popup.h>
#include <m_icolib.h>
#include <m_userinfo.h>
#include <m_addcontact.h>
#include <m_message.h>
#include <m_avatars.h>
#include <tox.h>
#include <toxdns.h>
#include <toxencryptsave.h>
#include "version.h"
#include "resource.h"
#include "tox_transfer.h"
#include "tox_proto.h"
extern HINSTANCE g_hInstance;
#define MODULE "Tox"
#define TOX_ERROR -1
#define TOX_SETTINGS_ID "ToxID"
#define TOX_SETTINGS_DNS "DnsID"
#define TOX_SETTINGS_GROUP "DefaultGroup"
#define TOX_SETTINGS_AVATAR_HASH "AvatarHash"
#define TOX_DB_EVENT_TYPE_ACTION 10001
#define TOX_FILE_BLOCK_SIZE 1024 * 1024
extern HMODULE g_hToxLibrary;
template<typename T>
T CreateFunction(LPCSTR functionName)
{
if (g_hToxLibrary == NULL)
{
g_hToxLibrary = LoadLibrary(L"libtox.dll");
}
return reinterpret_cast<T>(GetProcAddress(g_hToxLibrary, functionName));
}
#endif //_COMMON_H_
|