LeviLamina
Loading...
Searching...
No Matches
http_memory.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace xbox::httpclient {
6
7struct http_memory {
8public:
9 // static functions
10 // NOLINTBEGIN
11 MCAPI static void* mem_alloc(uint64);
12
13 MCAPI static void mem_free(void*);
14 // NOLINTEND
15};
16
17} // namespace xbox::httpclient
Definition http_memory.h:7