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.

30 lines
771 B

  1. #if !defined(WIN16)
  2. extern HANDLE g_hDLLHeap; // private Win32 heap
  3. #define MyAlloc(n) ((LPBYTE)HeapAlloc(g_hDLLHeap, HEAP_ZERO_MEMORY, sizeof(BYTE)*(n)))
  4. #define MyFree(pv) HeapFree(g_hDLLHeap, 0, pv)
  5. #define MyRealloc(pv, n) ((LPBYTE)HeapReAlloc(g_hDLLHeap, HEAP_ZERO_MEMORY, (pv), sizeof(BYTE)*(n)))
  6. #define MyHeapSize(pv) HeapSize(g_hDLLHeap, 0, pv)
  7. LPSTR MyStrDup(LPSTR);
  8. #ifdef DEBUG
  9. #define MyAssert(f) ((f) ? 0 : MyAssertProc(__FILE__, __LINE__, #f))
  10. #define MyDbgSz(x) { puts x; OutputDebugString x; }
  11. int MyAssertProc(LPSTR, int, LPSTR);
  12. void CDECL MyDprintf(LPCSTR pcsz, ...);
  13. #else // DEBUG
  14. # define MyTrace(x)
  15. # define MyDbgSz(x)
  16. # define MyAssert(f)
  17. #endif // DEBUG
  18. #define W32toHR(x) HRESULT_FROM_WIN32(x)
  19. #endif // !WIN16