mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
Upgrade WX to r74856, mainly to support @2x.
This commit is contained in:
@ -4,7 +4,6 @@
|
||||
// Author: Guilhem Lavaux
|
||||
// Modified by:
|
||||
// Created: 1997
|
||||
// RCS-ID: $Id: file.h 67254 2011-03-20 00:14:35Z DS $
|
||||
// Copyright: (c) 1997, 1998 Guilhem Lavaux
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -5,7 +5,6 @@
|
||||
// Modified by: Mark Johnson, wxWindows@mj10777.de
|
||||
// 20000917 : RmDir, GetLastResult, GetList
|
||||
// Created: 07/07/1997
|
||||
// RCS-ID: $Id: ftp.h 67384 2011-04-03 20:31:32Z DS $
|
||||
// Copyright: (c) 1997, 1998 Guilhem Lavaux
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
12
Externals/wxWidgets3/include/wx/protocol/http.h
vendored
12
Externals/wxWidgets3/include/wx/protocol/http.h
vendored
@ -4,7 +4,6 @@
|
||||
// Author: Guilhem Lavaux
|
||||
// Modified by: Simo Virokannas (authentication, Dec 2005)
|
||||
// Created: August 1997
|
||||
// RCS-ID: $Id: http.h 70408 2012-01-20 12:22:25Z VZ $
|
||||
// Copyright: (c) 1997, 1998 Guilhem Lavaux
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
@ -36,6 +35,7 @@ public:
|
||||
wxString GetHeader(const wxString& header) const;
|
||||
int GetResponse() const { return m_http_response; }
|
||||
|
||||
void SetMethod(const wxString& method) { m_method = method; }
|
||||
void SetHeader(const wxString& header, const wxString& h_data);
|
||||
bool SetPostText(const wxString& contentType,
|
||||
const wxString& data,
|
||||
@ -51,19 +51,12 @@ public:
|
||||
wxDEPRECATED(void SetPostBuffer(const wxString& post_buf));
|
||||
|
||||
protected:
|
||||
enum wxHTTP_Req
|
||||
{
|
||||
wxHTTP_GET,
|
||||
wxHTTP_POST,
|
||||
wxHTTP_HEAD
|
||||
};
|
||||
|
||||
typedef wxStringToStringHashMap::iterator wxHeaderIterator;
|
||||
typedef wxStringToStringHashMap::const_iterator wxHeaderConstIterator;
|
||||
typedef wxStringToStringHashMap::iterator wxCookieIterator;
|
||||
typedef wxStringToStringHashMap::const_iterator wxCookieConstIterator;
|
||||
|
||||
bool BuildRequest(const wxString& path, wxHTTP_Req req);
|
||||
bool BuildRequest(const wxString& path, const wxString& method);
|
||||
void SendHeaders();
|
||||
bool ParseHeaders();
|
||||
|
||||
@ -81,6 +74,7 @@ protected:
|
||||
|
||||
// internal variables:
|
||||
|
||||
wxString m_method;
|
||||
wxStringToStringHashMap m_cookies;
|
||||
|
||||
wxStringToStringHashMap m_headers;
|
||||
|
@ -3,7 +3,6 @@
|
||||
// Purpose: wxProtocolLog class for logging network exchanges
|
||||
// Author: Troelsk, Vadim Zeitlin
|
||||
// Created: 2009-03-06
|
||||
// RCS-ID: $Id: log.h 59404 2009-03-07 13:58:39Z VZ $
|
||||
// Copyright: (c) 2009 Vadim Zeitlin <vadim@wxwidgets.org>
|
||||
// Licence: wxWindows licence
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -4,7 +4,6 @@
|
||||
// Author: Guilhem Lavaux
|
||||
// Modified by:
|
||||
// Created: 10/07/1997
|
||||
// RCS-ID: $Id: protocol.h 64532 2010-06-09 13:55:48Z FM $
|
||||
// Copyright: (c) 1997, 1998 Guilhem Lavaux
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
Reference in New Issue
Block a user