windows-nt/Source/XPSP1/NT/shell/inc/deballoc.h
2020-09-26 16:20:57 +08:00

23 lines
490 B
C

#if 0
#pragma message("### Building FULL_DEBUG version ###")
#undef LocalAlloc
#undef LocalReAlloc
#undef LocalFree
#define LocalAlloc DebugLocalAlloc
#define LocalReAlloc DebugLocalReAlloc
#define LocalFree DebugLocalFree
#ifdef __cplusplus
extern "C" {
#endif
HLOCAL WINAPI DebugLocalAlloc(UINT uFlags, UINT uBytes);
HLOCAL WINAPI DebugLocalReAlloc(HLOCAL hMem, UINT uBytes, UINT uFlags);
HLOCAL WINAPI DebugLocalFree( HLOCAL hMem );
#ifdef __cplusplus
};
#endif
#endif