LeviLamina
Loading...
Searching...
No Matches
AllocationSizeQueryAPI.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock::Memory {
6
7enum class AllocationSizeQueryAPI : uchar {
8 Invalid = 0,
9 MicrosoftMsize = 1,
10 LinuxMallocUsableSize = 2,
11 AppleMallocSize = 3,
12};
13
14}