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.

22 lines
490 B

  1. #if 0
  2. #pragma message("### Building FULL_DEBUG version ###")
  3. #undef LocalAlloc
  4. #undef LocalReAlloc
  5. #undef LocalFree
  6. #define LocalAlloc DebugLocalAlloc
  7. #define LocalReAlloc DebugLocalReAlloc
  8. #define LocalFree DebugLocalFree
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. HLOCAL WINAPI DebugLocalAlloc(UINT uFlags, UINT uBytes);
  13. HLOCAL WINAPI DebugLocalReAlloc(HLOCAL hMem, UINT uBytes, UINT uFlags);
  14. HLOCAL WINAPI DebugLocalFree( HLOCAL hMem );
  15. #ifdef __cplusplus
  16. };
  17. #endif
  18. #endif