windows-nt/Source/XPSP1/NT/multimedia/directx/dmusic/dmcompos/opnew.cpp

35 lines
617 B
C++
Raw Normal View History

2020-09-26 03:20:57 -05:00
//+-------------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (c) 1999-1999 Microsoft Corporation
//
// File: opnew.cpp
//
//--------------------------------------------------------------------------
// OpNew.cpp
//
// Override operator new[] so that we ignore the new_handler mechanism.
//
//
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include "Debug.h"
LPVOID __cdecl operator new(size_t cbBuffer)
{
LPVOID p;
p = malloc(cbBuffer ? cbBuffer : 1);
return p;
}
void __cdecl operator delete(LPVOID p)
{
free(p);
}