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.
26 lines
845 B
26 lines
845 B
//**************************************************************************
|
|
//
|
|
// Title : Mem.h
|
|
//
|
|
// Date : 1997.12.08 1st making
|
|
//
|
|
// Author : Toshiba [PCS](PSY) Hideki Yagi
|
|
//
|
|
// Copyright 1997 Toshiba Corporation. All Rights Reserved.
|
|
//
|
|
// -------------------------------------------------------------------------
|
|
//
|
|
// Change log :
|
|
//
|
|
// Date Revision Description
|
|
// ------------ ---------- -----------------------------------------------
|
|
// 1997.12.08 000.0000 1st making.
|
|
//
|
|
//**************************************************************************
|
|
//_PHN __cdecl _set_new_handler( _PHN );
|
|
|
|
PVOID _cdecl ::operator new( size_t size );
|
|
//PVOID _cdecl operator new( size_t size, POOL_TYPE type );
|
|
VOID _cdecl ::operator delete( PVOID p );
|
|
|
|
|