KasmVNC/common/network/webudp/WuPool.h
Lauri Kasanen 3b40a92548 Udp
2022-07-26 10:38:14 +00:00

11 lines
225 B
C

#pragma once
#include <stdint.h>
struct WuPool;
WuPool* WuPoolCreate(int32_t blockSize, int32_t numBlocks);
void WuPoolDestroy(WuPool* pool);
void* WuPoolAcquire(WuPool* pool);
void WuPoolRelease(WuPool* pool, void* ptr);