CPF/CPF.Mac/Mac/CoreFoundation/CFAllocatorFlags.cs

12 lines
157 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
using System;
namespace CPF.Mac.CoreFoundation
{
[Flags]
public enum CFAllocatorFlags : ulong
{
GCScannedMemory = 0x200,
GCObjectMemory = 0x400
}
}