#pragma once
#include "seal/c/defines.h"
#include <stdint.h>
SEAL_C_FUNC MemoryPoolHandle_Create1(void **handle);
SEAL_C_FUNC MemoryPoolHandle_Create2(void *otherptr, void **handle);
SEAL_C_FUNC MemoryPoolHandle_Destroy(void *thisptr);
SEAL_C_FUNC MemoryPoolHandle_Set(void *thisptr, void *assignptr);
SEAL_C_FUNC MemoryPoolHandle_Global(void **handle);
SEAL_C_FUNC MemoryPoolHandle_ThreadLocal(void **handle);
SEAL_C_FUNC MemoryPoolHandle_New(bool clear_on_destruction, void **handle);
SEAL_C_FUNC MemoryPoolHandle_PoolCount(void *thisptr, uint64_t *count);
SEAL_C_FUNC MemoryPoolHandle_AllocByteCount(void *thisptr, uint64_t *count);
SEAL_C_FUNC MemoryPoolHandle_UseCount(void *thisptr, long *count);
SEAL_C_FUNC MemoryPoolHandle_IsInitialized(void *thisptr, bool *result);
SEAL_C_FUNC MemoryPoolHandle_Equals(void *thisptr, void *otherptr, bool *result);