LeviLamina
Loading...
Searching...
No Matches
IHttpProvider.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/lib_http_client/http_stl_allocator.h"
7
8// auto generated forward declare list
9// clang-format off
10struct HC_CALL;
11struct XAsyncBlock;
12// clang-format on
13
14namespace xbox::httpclient {
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 0
21 virtual ~IHttpProvider() = default;
22
23 // vIndex: 1
24 virtual HRESULT PerformAsync(::HC_CALL*, ::XAsyncBlock*) = 0;
25
26 // vIndex: 2
27 virtual HRESULT SetGlobalProxy(::http_string const&);
28
29 // vIndex: 3
30 virtual HRESULT CleanupAsync(::XAsyncBlock* async);
31 // NOLINTEND
32
33public:
34 // virtual function thunks
35 // NOLINTBEGIN
36 MCNAPI HRESULT $SetGlobalProxy(::http_string const&);
37
38 MCNAPI HRESULT $CleanupAsync(::XAsyncBlock* async);
39 // NOLINTEND
40};
41
42} // namespace xbox::httpclient
Definition IHttpProvider.h:16
MCAPI HRESULT $SetGlobalProxy(::http_string const &)
MCAPI HRESULT $CleanupAsync(::XAsyncBlock *async)
Definition HC_CALL.h:16
Definition XAsyncBlock.h:10