17 lines
295 B
C
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_
|
|
|
|
|