LeviLamina
Loading...
Searching...
No Matches
MemoryPage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock::JSONObject {
6
7class MemoryPage {
8public:
9 // member variables
10 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 MemoryPage& operator=(MemoryPage const&);
22 MemoryPage(MemoryPage const&);
23 MemoryPage();
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCNAPI void* allocateBack(uint64 bytes, uint64 align);
29
30 MCNAPI void* allocateFront(uint64 bytes, uint64 align);
31 // NOLINTEND
32};
33
34} // namespace Bedrock::JSONObject
Definition MemoryPage.h:7
MCAPI void * allocateBack(uint64 bytes, uint64 align)
MCAPI void * allocateFront(uint64 bytes, uint64 align)
Definition Alias.h:14