Prepared wxWebRequest implementation

This commit is contained in:
Tobias Taschner
2018-10-18 23:19:17 +02:00
parent cacd79d40e
commit e07c1bf40c
19 changed files with 593 additions and 67 deletions

View File

@@ -0,0 +1,33 @@
///////////////////////////////////////////////////////////////////////////////
// Name: wx/msw/webrequest_winhttp.h
// Purpose: wxWebRequest WinHTTP implementation
// Author: Tobias Taschner
// Created: 2018-10-17
// Copyright: (c) 2018 wxWidgets development team
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#if defined(__BORLANDC__)
#pragma hdrstop
#endif
#include "wx/webrequest.h"
#if wxUSE_WEBREQUEST
#include "wx/msw/webrequest_winhttp.h"
wxWebRequest* wxWebSessionWinHTTP::CreateRequest(const wxString& url, int id)
{
return NULL;
}
void wxWebSessionWinHTTP::SetHeader(const wxString& name, const wxString& value)
{
}
#endif // wxUSE_WEBREQUEST