forward declaration

This commit is contained in:
2026-06-14 04:05:45 +02:00
parent a78ec329b4
commit 088a3648dd

View File

@@ -34,6 +34,9 @@ typedef enum _MIHP_HeapCorruptionError
MIHP_HCE_DoubleFree = 2
} MIHP_HeapCorruptionError;
struct _MIHP_Heap;
struct _MIHP_HeapCorruptionInfo;
typedef void (MIHP_OnHeapCorruptionDetectedFn)(const struct _MIHP_Heap* heap, struct _MIHP_HeapCorruptionInfo corruptionInfo);
typedef void(MIHP_LockHeapFn)(MIHP_HeapOpaque heap, void* heapLock);