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.
|
|
/*++
Copyright (c) 1994 Microsoft Corporation All rights reserved.
Module Name:
Mem.hxx
Abstract:
Memory header Must include Common.hxx.
Author:
Albert Ting (AlbertT) 20-May-1994
Revision History:
--*/
#ifndef _MEM_HXX
#define _MEM_HXX
#ifdef __cplusplus
extern "C" { #endif
extern BOOL gbAllocFail; extern LONG gcAllocFail;
PVOID AllocMem( UINT cbSize );
VOID FreeMem( PVOID pMem );
#if DBG
PVOID DbgAllocMem( UINT cbSize );
VOID DbgFreeMem( PVOID pMem ); #endif
#ifdef __cplusplus
} #endif
#ifdef __cplusplus
/********************************************************************
The following are used if you want to override a classes' new and delete using SAFE_NEW.
********************************************************************/
inline PVOID SafeNew( size_t size ) { return AllocMem(size); }
inline VOID SafeDelete( PVOID pVoid) { FreeMem( pVoid ); } #endif
#endif // ifdef _MEM_HXX
|