From 29371caa9c29fd6cfdfb238d98f53fda59e2e8a7 Mon Sep 17 00:00:00 2001 From: vnugent Date: Wed, 29 Nov 2023 00:15:28 -0500 Subject: immutable fbm clients, websocket abstractions, prep for monocypher/argon2 bindings --- lib/Utils.Memory/NativeHeapApi/src/NativeHeapApi.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib/Utils.Memory/NativeHeapApi') diff --git a/lib/Utils.Memory/NativeHeapApi/src/NativeHeapApi.h b/lib/Utils.Memory/NativeHeapApi/src/NativeHeapApi.h index eec4a8a..c5d07b2 100644 --- a/lib/Utils.Memory/NativeHeapApi/src/NativeHeapApi.h +++ b/lib/Utils.Memory/NativeHeapApi/src/NativeHeapApi.h @@ -73,7 +73,11 @@ typedef enum HeapCreationFlags /// /// Specifies that the requested heap will be a shared heap for the process/library /// - HEAP_CREATION_IS_SHARED = 0x04 + HEAP_CREATION_IS_SHARED = 0x04, + /// + /// Specifies that the heap will support block reallocation + /// + HEAP_CREATION_SUPPORTS_REALLOC = 0x08, } HeapCreationFlags; /// -- cgit