mirror of https://github.com/tongzx/nt5src
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.
73 lines
952 B
73 lines
952 B
/*++
|
|
|
|
Copyright (c) 1994 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
util.hxx
|
|
|
|
Abstract:
|
|
|
|
Contains the class definition of UTILITY classes.
|
|
|
|
Author:
|
|
|
|
Madan Appiah (madana) 16-Nov-1994
|
|
|
|
Environment:
|
|
|
|
User Mode - Win32
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _UTIL_
|
|
#define _UTIL_
|
|
|
|
#if 0
|
|
|
|
void *operator new( unsigned int );
|
|
void operator delete( void * );
|
|
|
|
#endif // 0
|
|
|
|
/*++
|
|
|
|
Class Description:
|
|
|
|
This class implements the MEMORY allocation object.
|
|
|
|
Public Member functions:
|
|
|
|
Alloc : allocates a block memory.
|
|
|
|
Free : Frees a memory block that was allocated by the above alloc()
|
|
member function.
|
|
|
|
--*/
|
|
class MEMORY {
|
|
|
|
private:
|
|
|
|
#if DBG
|
|
DWORD _Count;
|
|
DWORD _TotalSize;
|
|
#endif
|
|
|
|
public:
|
|
|
|
MEMORY::MEMORY( VOID ) {
|
|
#if DBG
|
|
_Count = 0;
|
|
_TotalSize = 0;
|
|
#endif
|
|
};
|
|
|
|
PVOID Alloc( DWORD Size );
|
|
PVOID ReAlloc( PVOID OldMemory, DWORD NewSize );
|
|
VOID Free( PVOID MemoryPtr );
|
|
};
|
|
|
|
#endif // _UTIL_
|
|
|