From 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d Mon Sep 17 00:00:00 2001 From: Jef Date: Tue, 24 Sep 2024 14:54:57 +0200 Subject: Initial community commit --- Src/Wasabi/api/memmgr/api_memmgr.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Src/Wasabi/api/memmgr/api_memmgr.cpp (limited to 'Src/Wasabi/api/memmgr/api_memmgr.cpp') diff --git a/Src/Wasabi/api/memmgr/api_memmgr.cpp b/Src/Wasabi/api/memmgr/api_memmgr.cpp new file mode 100644 index 00000000..e1001185 --- /dev/null +++ b/Src/Wasabi/api/memmgr/api_memmgr.cpp @@ -0,0 +1,13 @@ +#include +#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; -- cgit