From 3cb3883908e3168e5f955be3143771721614307a Mon Sep 17 00:00:00 2001 From: George Hazan Date: Thu, 12 Jan 2017 21:27:03 +0300 Subject: Netlib_FreeHttpRequest() instead of MS_NETLIB_FREEHTTPREQUESTSTRUCT --- plugins/PasteIt/src/PasteToWeb.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/PasteIt') diff --git a/plugins/PasteIt/src/PasteToWeb.cpp b/plugins/PasteIt/src/PasteToWeb.cpp index ec6cdd9878..1307a2fabd 100644 --- a/plugins/PasteIt/src/PasteToWeb.cpp +++ b/plugins/PasteIt/src/PasteToWeb.cpp @@ -542,7 +542,7 @@ wchar_t* PasteToWeb::SendToWeb(char* url, std::map& he } nlhr.headersCount = nHeaders; - NETLIBHTTPREQUEST* nlhrReply = (NETLIBHTTPREQUEST*)CallService(MS_NETLIB_HTTPTRANSACTION, (WPARAM)g_hNetlibUser, (LPARAM)&nlhr); + NETLIBHTTPREQUEST* nlhrReply = Netlib_HttpTransaction(g_hNetlibUser, &nlhr); if (nlhrReply != NULL) { if (nlhrReply->resultCode == 200) @@ -557,7 +557,7 @@ wchar_t* PasteToWeb::SendToWeb(char* url, std::map& he } } - CallService(MS_NETLIB_FREEHTTPREQUESTSTRUCT, 0, (LPARAM)nlhrReply); + Netlib_FreeHttpRequest(nlhrReply); } delete[] httpHeaders; for (std::list::iterator it = mallBuf.begin(); it != mallBuf.end(); ++it) -- cgit v1.2.3