2020-09-30 16:53:55 +02:00

17 lines
295 B
C

#ifndef _MEM_MGR_H_
#define _MEM_MGR_H_
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif //WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <windowsx.h>
#define MemAlloc(a) GlobalAllocPtr(GHND, (a))
#define MemFree(a) GlobalFreePtr((a))
#endif //_MEM_MGR_H_