Udp
This commit is contained in:
committed by
Matthew McClaskey
parent
ba902f8194
commit
3b40a92548
10
common/network/webudp/WuPool.h
Normal file
10
common/network/webudp/WuPool.h
Normal file
@@ -0,0 +1,10 @@
|
||||
#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);
|
||||
Reference in New Issue
Block a user