diff options
author | aunsane <aunsane@gmail.com> | 2017-02-23 16:39:28 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2017-02-23 16:40:23 +0300 |
commit | 34e423793fe14fe60a1e463e724523bc1f471cd3 (patch) | |
tree | 43b19928c01cc652c46b9d7d9f34312552f9a1a9 /protocols/Tox/src/stdafx.h | |
parent | bbb4ba8b737a4c3aaf165392f1d4919c0147b834 (diff) |
Tox:
- added compatibility check
- version bump
Diffstat (limited to 'protocols/Tox/src/stdafx.h')
-rw-r--r-- | protocols/Tox/src/stdafx.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/protocols/Tox/src/stdafx.h b/protocols/Tox/src/stdafx.h index 6b2c083543..dee3d7f817 100644 --- a/protocols/Tox/src/stdafx.h +++ b/protocols/Tox/src/stdafx.h @@ -70,6 +70,10 @@ extern HINSTANCE g_hInstance; #define MODULE "Tox"
+#define TOX_API_VER_MAJOR 0
+#define TOX_API_VER_MINOR 1
+#define TOX_API_VER_PATCH 5
+
#define TOX_ERROR -1
#define TOX_MAX_CONNECT_RETRIES 300
@@ -103,6 +107,7 @@ enum TOX_DB_EVENT #define TOX_MAX_AVATAR_SIZE 1 << 16 // 2 ^ 16 bytes
+#define TOX_LIBRARY L"libtox.dll"
extern HMODULE g_hToxLibrary;
template<typename T>
|