You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
295 B
16 lines
295 B
#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_
|
|
|
|
|