From 4deaf28bfaf2a71686e0ef2e3b494ab5b807311b Mon Sep 17 00:00:00 2001 From: Alexander Lantsev Date: Mon, 1 Oct 2012 19:25:45 +0000 Subject: - netlib funcs moved to skype_netlib.cpp - some minor changes git-svn-id: http://svn.miranda-ng.org/main/trunk@1753 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Skype/src/skype_netlib.cpp | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 protocols/Skype/src/skype_netlib.cpp (limited to 'protocols/Skype/src/skype_netlib.cpp') diff --git a/protocols/Skype/src/skype_netlib.cpp b/protocols/Skype/src/skype_netlib.cpp new file mode 100644 index 0000000000..ece518f351 --- /dev/null +++ b/protocols/Skype/src/skype_netlib.cpp @@ -0,0 +1,34 @@ +#include "skype_proto.h" + +void CSkypeProto::InitNetLib() +{ + wchar_t name[128]; + mir_sntprintf(name, SIZEOF(name), TranslateT("%s connection"), this->m_tszUserName); + + NETLIBUSER nlu = {0}; + nlu.cbSize = sizeof(nlu); + nlu.flags = NUF_OUTGOING | NUF_INCOMING | NUF_HTTPCONNS | NUF_UNICODE; + nlu.ptszDescriptiveName = name; + nlu.szSettingsModule = this->m_szModuleName; + this->hNetlibUser = (HANDLE)CallService(MS_NETLIB_REGISTERUSER, 0, (LPARAM)&nlu); + + this->Log("Setting protocol/module name to '%s/%s'", m_szProtoName, m_szModuleName); +} + +void CSkypeProto::UninitNetLib() +{ + Netlib_CloseHandle(this->hNetlibUser); + this->hNetlibUser = NULL; +} + +void CSkypeProto::Log(const char* fmt, ...) +{ + va_list va; + char msg[1024]; + + va_start(va, fmt); + mir_vsnprintf(msg, sizeof(msg), fmt, va); + va_end(va); + + CallService(MS_NETLIB_LOG, (WPARAM)this->hNetlibUser, (LPARAM)msg); +} \ No newline at end of file -- cgit v1.2.3