Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

31 lines
815 B

#if !defined(WIN16)
extern HANDLE g_hDLLHeap; // private Win32 heap
#define MyAlloc(n) ((LPTSTR)HeapAlloc(g_hDLLHeap, HEAP_ZERO_MEMORY, sizeof(TCHAR)*(n)))
#define MyFree(pv) HeapFree(g_hDLLHeap, 0, pv)
#define MyRealloc(pv, n) ((LPTSTR)HeapReAlloc(g_hDLLHeap, HEAP_ZERO_MEMORY, (pv), sizeof(TCHAR)*(n)))
#define MyHeapSize(pv) HeapSize(g_hDLLHeap, 0, pv)
LPTSTR MyStrDup(LPTSTR);
#ifdef DEBUG
#define MyAssert(f) ((f) ? 0 : MyAssertProc(__FILE__, __LINE__, #f))
#define MyTrace(x) { MyDprintf x; }
#define MyDbgSz(x) { puts x; OutputDebugString x; }
int MyAssertProc(LPTSTR, int, LPTSTR);
void CDECL MyDprintf(LPCSTR pcsz, ...);
#else // DEBUG
# define MyTrace(x)
# define MyDbgSz(x)
# define MyAssert(f)
#endif // DEBUG
#define W32toHR(x) HRESULT_FROM_WIN32(x)
#endif // !WIN16