diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-04-26 11:03:17 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-04-26 11:03:17 +0000 |
commit | dde1f3e583159fddbcdba6ec52e7e3e432c00711 (patch) | |
tree | a6ac4c5d4c957cf80f0fff3867ea2d7a0ddb958a /protocols/Tox/src | |
parent | 73d66eaffe6fb0b0b422c3c9a7e24f4914d370fe (diff) |
Tox: common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@13160 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src')
30 files changed, 29 insertions, 29 deletions
diff --git a/protocols/Tox/src/api_av.cpp b/protocols/Tox/src/api_av.cpp index afcf544bbf..5e09dc81bd 100644 --- a/protocols/Tox/src/api_av.cpp +++ b/protocols/Tox/src/api_av.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
/* COMMON A/V FUNCTIONS */
diff --git a/protocols/Tox/src/api_avatars.cpp b/protocols/Tox/src/api_avatars.cpp index e15773b94f..658b835a68 100644 --- a/protocols/Tox/src/api_avatars.cpp +++ b/protocols/Tox/src/api_avatars.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
/* AVATAR FUNCTIONS */
diff --git a/protocols/Tox/src/api_connection.cpp b/protocols/Tox/src/api_connection.cpp index 7777755fd6..3803411fa3 100644 --- a/protocols/Tox/src/api_connection.cpp +++ b/protocols/Tox/src/api_connection.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
/* CONNECTION FUNCTIONS */
diff --git a/protocols/Tox/src/api_dns.cpp b/protocols/Tox/src/api_dns.cpp index 3b4e601d9a..57db01e57c 100644 --- a/protocols/Tox/src/api_dns.cpp +++ b/protocols/Tox/src/api_dns.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
/* DNS TOXID RESOILVING FUNCTIONS */
diff --git a/protocols/Tox/src/api_encryption.cpp b/protocols/Tox/src/api_encryption.cpp index f5fd2634e3..b57e342e99 100644 --- a/protocols/Tox/src/api_encryption.cpp +++ b/protocols/Tox/src/api_encryption.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
/* ENCRYPTION FUNCTIONS */
diff --git a/protocols/Tox/src/api_groupchats.cpp b/protocols/Tox/src/api_groupchats.cpp index eb8b01603d..9919eee92c 100644 --- a/protocols/Tox/src/api_groupchats.cpp +++ b/protocols/Tox/src/api_groupchats.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
/* GROUP CHAT FUNCTIONS: WARNING Group chats will be rewritten so this might change */
diff --git a/protocols/Tox/src/api_main.cpp b/protocols/Tox/src/api_main.cpp index 19bb82f586..1e04f74ef0 100644 --- a/protocols/Tox/src/api_main.cpp +++ b/protocols/Tox/src/api_main.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
/* MAIN FUNCTIONS */
diff --git a/protocols/Tox/src/api_transfer.cpp b/protocols/Tox/src/api_transfer.cpp index f3aceab334..8906436084 100644 --- a/protocols/Tox/src/api_transfer.cpp +++ b/protocols/Tox/src/api_transfer.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
/* FILE SENDING FUNCTIONS */
diff --git a/protocols/Tox/src/stdafx.cpp b/protocols/Tox/src/stdafx.cxx index c5fe5abaad..6fb37564b7 100644 --- a/protocols/Tox/src/stdafx.cpp +++ b/protocols/Tox/src/stdafx.cxx @@ -15,4 +15,4 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "common.h"
\ No newline at end of file +#include "stdafx.h"
\ No newline at end of file diff --git a/protocols/Tox/src/common.h b/protocols/Tox/src/stdafx.h index be70a8bf6b..be70a8bf6b 100644 --- a/protocols/Tox/src/common.h +++ b/protocols/Tox/src/stdafx.h diff --git a/protocols/Tox/src/main.cpp b/protocols/Tox/src/tox.cpp index 4d7cd0ab50..613c790e24 100644 --- a/protocols/Tox/src/main.cpp +++ b/protocols/Tox/src/tox.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
int hLangpack;
CLIST_INTERFACE* pcli;
diff --git a/protocols/Tox/src/tox_accounts.cpp b/protocols/Tox/src/tox_accounts.cpp index 2e77486c37..29645bc6bf 100644 --- a/protocols/Tox/src/tox_accounts.cpp +++ b/protocols/Tox/src/tox_accounts.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
LIST<CToxProto> CToxProto::Accounts(1, CToxProto::CompareAccounts);
diff --git a/protocols/Tox/src/tox_avatars.cpp b/protocols/Tox/src/tox_avatars.cpp index eb5bc71abb..643e447853 100644 --- a/protocols/Tox/src/tox_avatars.cpp +++ b/protocols/Tox/src/tox_avatars.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
std::tstring CToxProto::GetAvatarFilePath(MCONTACT hContact)
{
diff --git a/protocols/Tox/src/tox_chatrooms.cpp b/protocols/Tox/src/tox_chatrooms.cpp index deb0ad7f48..62af4e6816 100644 --- a/protocols/Tox/src/tox_chatrooms.cpp +++ b/protocols/Tox/src/tox_chatrooms.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
MCONTACT CToxProto::GetChatRoom(int groupNumber)
{
diff --git a/protocols/Tox/src/tox_contacts.cpp b/protocols/Tox/src/tox_contacts.cpp index 838a9fde7e..8f6484f39e 100644 --- a/protocols/Tox/src/tox_contacts.cpp +++ b/protocols/Tox/src/tox_contacts.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
WORD CToxProto::GetContactStatus(MCONTACT hContact)
{
diff --git a/protocols/Tox/src/tox_core.cpp b/protocols/Tox/src/tox_core.cpp index 400091cbed..8e5ea7e63d 100644 --- a/protocols/Tox/src/tox_core.cpp +++ b/protocols/Tox/src/tox_core.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
bool CToxProto::InitToxCore()
{
diff --git a/protocols/Tox/src/tox_events.cpp b/protocols/Tox/src/tox_events.cpp index e22ebb1c3c..cb30de873e 100644 --- a/protocols/Tox/src/tox_events.cpp +++ b/protocols/Tox/src/tox_events.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
int CToxProto::OnModulesLoaded(WPARAM, LPARAM)
{
diff --git a/protocols/Tox/src/tox_icons.cpp b/protocols/Tox/src/tox_icons.cpp index e01c39ff97..eecb2e2bd6 100644 --- a/protocols/Tox/src/tox_icons.cpp +++ b/protocols/Tox/src/tox_icons.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
IconInfo CToxProto::Icons[] =
{
diff --git a/protocols/Tox/src/tox_menus.cpp b/protocols/Tox/src/tox_menus.cpp index aec9a4b1eb..247ba54378 100644 --- a/protocols/Tox/src/tox_menus.cpp +++ b/protocols/Tox/src/tox_menus.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
HGENMENU CToxProto::ContactMenuItems[CMI_MAX];
diff --git a/protocols/Tox/src/tox_messages.cpp b/protocols/Tox/src/tox_messages.cpp index 3a78ff5b76..d6e77e1ab7 100644 --- a/protocols/Tox/src/tox_messages.cpp +++ b/protocols/Tox/src/tox_messages.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
/* MESSAGE RECEIVING */
diff --git a/protocols/Tox/src/tox_multimedia.cpp b/protocols/Tox/src/tox_multimedia.cpp index 597b72263a..3c8dded1b8 100644 --- a/protocols/Tox/src/tox_multimedia.cpp +++ b/protocols/Tox/src/tox_multimedia.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
CToxCallDlgBase::CToxCallDlgBase(CToxProto *proto, int idDialog, MCONTACT hContact) :
CToxDlgBase(proto, idDialog, false), hContact(hContact)
diff --git a/protocols/Tox/src/tox_netlib.cpp b/protocols/Tox/src/tox_netlib.cpp index 7ebddc66b2..697e89ffa4 100644 --- a/protocols/Tox/src/tox_netlib.cpp +++ b/protocols/Tox/src/tox_netlib.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
void CToxProto::InitNetlib()
{
diff --git a/protocols/Tox/src/tox_network.cpp b/protocols/Tox/src/tox_network.cpp index c9d4a2b6c2..ec79f22747 100644 --- a/protocols/Tox/src/tox_network.cpp +++ b/protocols/Tox/src/tox_network.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
bool CToxProto::IsOnline()
{
diff --git a/protocols/Tox/src/tox_options.cpp b/protocols/Tox/src/tox_options.cpp index 6023ea62dd..21e2ddba6a 100644 --- a/protocols/Tox/src/tox_options.cpp +++ b/protocols/Tox/src/tox_options.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
CToxOptionsMain::CToxOptionsMain(CToxProto *proto, int idDialog)
: CToxDlgBase(proto, idDialog, false),
diff --git a/protocols/Tox/src/tox_profile.cpp b/protocols/Tox/src/tox_profile.cpp index 51361b4b34..1b31e1f9ab 100644 --- a/protocols/Tox/src/tox_profile.cpp +++ b/protocols/Tox/src/tox_profile.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
HANDLE CToxProto::hProfileFolderPath;
diff --git a/protocols/Tox/src/tox_proto.cpp b/protocols/Tox/src/tox_proto.cpp index 0b3947cd74..ebd75482bd 100644 --- a/protocols/Tox/src/tox_proto.cpp +++ b/protocols/Tox/src/tox_proto.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
CToxProto::CToxProto(const char* protoName, const TCHAR* userName) :
PROTO<CToxProto>(protoName, userName),
diff --git a/protocols/Tox/src/tox_search.cpp b/protocols/Tox/src/tox_search.cpp index cdfec2218e..0c66c33fea 100644 --- a/protocols/Tox/src/tox_search.cpp +++ b/protocols/Tox/src/tox_search.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
ToxHexAddress ResolveToxAddressFromDnsRecordV1(const std::string &dnsRecord)
{
diff --git a/protocols/Tox/src/tox_services.cpp b/protocols/Tox/src/tox_services.cpp index cf3d3f142f..3b5ba18395 100644 --- a/protocols/Tox/src/tox_services.cpp +++ b/protocols/Tox/src/tox_services.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
INT_PTR CToxProto::SetMyNickname(WPARAM wParam, LPARAM lParam)
{
diff --git a/protocols/Tox/src/tox_transfer.cpp b/protocols/Tox/src/tox_transfer.cpp index 8a2017affb..c54bc28181 100644 --- a/protocols/Tox/src/tox_transfer.cpp +++ b/protocols/Tox/src/tox_transfer.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
/* FILE RECEIVING */
diff --git a/protocols/Tox/src/tox_utils.cpp b/protocols/Tox/src/tox_utils.cpp index 68736bfd08..988f2a24f3 100644 --- a/protocols/Tox/src/tox_utils.cpp +++ b/protocols/Tox/src/tox_utils.cpp @@ -1,4 +1,4 @@ -#include "common.h"
+#include "stdafx.h"
TOX_USER_STATUS CToxProto::MirandaToToxStatus(int status)
{
|