mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-23 00:23:13 +01:00
11 lines
225 B
C
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);
|