-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCAdapterSteamHTTP002.h
More file actions
29 lines (28 loc) · 1.87 KB
/
CAdapterSteamHTTP002.h
File metadata and controls
29 lines (28 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
class CAdapterSteamHTTP002
{
virtual unknown_ret CreateHTTPRequest( EHTTPMethod, char const* ) = 0;
virtual unknown_ret SetHTTPRequestContextValue( uint32, uint64 ) = 0;
virtual unknown_ret SetHTTPRequestNetworkActivityTimeout( uint32, uint32 ) = 0;
virtual unknown_ret SetHTTPRequestHeaderValue( uint32, char const*, char const* ) = 0;
virtual unknown_ret SetHTTPRequestGetOrPostParameter( uint32, char const*, char const* ) = 0;
virtual unknown_ret SendHTTPRequest( uint32, uint64 * ) = 0;
virtual unknown_ret SendHTTPRequestAndStreamResponse( uint32, uint64 * ) = 0;
virtual unknown_ret DeferHTTPRequest( uint32 ) = 0;
virtual unknown_ret PrioritizeHTTPRequest( uint32 ) = 0;
virtual unknown_ret GetHTTPResponseHeaderSize( uint32, char const*, uint32 * ) = 0;
virtual unknown_ret GetHTTPResponseHeaderValue( uint32, char const*, uint8 *, uint32 ) = 0;
virtual unknown_ret GetHTTPResponseBodySize( uint32, uint32 * ) = 0;
virtual unknown_ret GetHTTPResponseBodyData( uint32, uint8 *, uint32 ) = 0;
virtual unknown_ret GetHTTPStreamingResponseBodyData( uint32, uint32, uint8 *, uint32 ) = 0;
virtual unknown_ret ReleaseHTTPRequest( uint32 ) = 0;
virtual unknown_ret GetHTTPDownloadProgressPct( uint32, float * ) = 0;
virtual unknown_ret SetHTTPRequestRawPostBody( uint32, char const*, uint8 *, uint32 ) = 0;
virtual unknown_ret CreateCookieContainer( bool ) = 0;
virtual unknown_ret ReleaseCookieContainer( uint32 ) = 0;
virtual unknown_ret SetCookie( uint32, char const*, char const*, char const* ) = 0;
virtual unknown_ret SetHTTPRequestCookieContainer( uint32, uint32 ) = 0;
virtual unknown_ret SetHTTPRequestUserAgentInfo( uint32, char const* ) = 0;
virtual unknown_ret SetHTTPRequestRequiresVerifiedCertificate( uint32, bool ) = 0;
virtual unknown_ret SetHTTPRequestAbsoluteTimeoutMS( uint32, uint32 ) = 0;
virtual unknown_ret GetHTTPRequestWasTimedOut( uint32, bool * ) = 0;
};