LeviLamina
Loading...
Searching...
No Matches
Compression.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/lib_http_client/HCCompressionLevel.h"
7#include "mc/external/lib_http_client/http_stl_allocator.h"
8
9namespace xbox::httpclient {
10
12public:
13 // static functions
14 // NOLINTBEGIN
15 MCNAPI static bool Available();
16
17 MCNAPI static void
18 CompressToGzip(uchar*, uint64, ::HCCompressionLevel, ::std::vector<uchar, ::http_stl_allocator<uchar>>&);
19
20 MCNAPI static void DecompressFromGzip(uchar*, uint64, ::std::vector<uchar, ::http_stl_allocator<uchar>>&);
21 // NOLINTEND
22};
23
24} // namespace xbox::httpclient
Definition http_stl_allocator.h:6
Definition Compression.h:11
static MCAPI void CompressToGzip(uchar *, uint64, ::HCCompressionLevel, ::std::vector< uchar, ::http_stl_allocator< uchar > > &)
static MCAPI bool Available()
static MCAPI void DecompressFromGzip(uchar *, uint64, ::std::vector< uchar, ::http_stl_allocator< uchar > > &)