mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
13 lines
305 B
C++
13 lines
305 B
C++
#include <precomp.h>
|
|
#include "api_memmgr.h"
|
|
|
|
#ifdef CBCLASS
|
|
#undef CBCLASS
|
|
#endif
|
|
#define CBCLASS api_memmgrI
|
|
START_DISPATCH;
|
|
CB(API_MEMMGR_SYSMALLOC, sysMalloc);
|
|
VCB(API_MEMMGR_SYSFREE, sysFree);
|
|
CB(API_MEMMGR_SYSREALLOC, sysRealloc);
|
|
VCB(API_MEMMGR_SYSMEMCHANGED, sysMemChanged);
|
|
END_DISPATCH;
|