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.
27 lines
671 B
27 lines
671 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1998 - 1999
|
|
//
|
|
// File: dbmem.h
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifndef __dbmem_h
|
|
#define __dbmem_h
|
|
|
|
#ifdef DEBUG
|
|
|
|
//
|
|
// When building with debug then build in the debugging allocator
|
|
//
|
|
|
|
HLOCAL DebugLocalAlloc(UINT uFlags, SIZE_T cbSize);
|
|
HLOCAL DebugLocalFree(HLOCAL hLocal);
|
|
|
|
#define LocalAlloc(flags, size) DebugLocalAlloc(flags, size)
|
|
#define LocalFree(handle) DebugLocalFree(handle)
|
|
|
|
#endif // DEBUG
|
|
#endif // __dbmem_h
|