aboutsummaryrefslogtreecommitdiff
path: root/lib/Utils.Memory/NativeHeapApi
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-11-29 00:15:28 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2023-11-29 00:15:28 -0500
commit29371caa9c29fd6cfdfb238d98f53fda59e2e8a7 (patch)
tree47bb4d4726f2cafb1af41460d3356519b4074198 /lib/Utils.Memory/NativeHeapApi
parent07824a130c7608337a36382dbfa40198a8c70297 (diff)
immutable fbm clients, websocket abstractions, prep for monocypher/argon2 bindings
Diffstat (limited to 'lib/Utils.Memory/NativeHeapApi')
-rw-r--r--lib/Utils.Memory/NativeHeapApi/src/NativeHeapApi.h6
1 files changed, 5 insertions, 1 deletions
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
/// <summary>
/// Specifies that the requested heap will be a shared heap for the process/library
/// </summary>
- HEAP_CREATION_IS_SHARED = 0x04
+ HEAP_CREATION_IS_SHARED = 0x04,
+ /// <summary>
+ /// Specifies that the heap will support block reallocation
+ /// </summary>
+ HEAP_CREATION_SUPPORTS_REALLOC = 0x08,
} HeapCreationFlags;
/// <summary>