This commit is contained in:
azw 2023-05-07 12:13:18 +00:00
parent b4e68c8d0a
commit 94960b065c
2 changed files with 26 additions and 0 deletions

View File

@ -11,3 +11,23 @@ void MMCache::UnInit()
{
}
char* MMCache::AllocSocketMsg(int len)
{
}
void MMCache::FreeSocketMsg(char* p)
{
}
char* MMCache::AllocUdpMsg(int len)
{
}
void MMCache::FreeUdpMsg(char* p)
{
}

View File

@ -13,4 +13,10 @@ public:
void Init();
void UnInit();
char* AllocSocketMsg(int len);
void FreeSocketMsg(char* p);
char* AllocUdpMsg(int len);
void FreeUdpMsg(char* p);
};