diff options
Diffstat (limited to 'protocols/Skype/src/skype_netlib.cpp')
-rw-r--r-- | protocols/Skype/src/skype_netlib.cpp | 34 |
1 files changed, 34 insertions, 0 deletions
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 |