Windows2000/private/shell/shell32/unicpp/cnctnpt.cpp
2020-09-30 17:12:32 +02:00

17 lines
369 B
C++

#include "stdafx.h"
#pragma hdrstop
// Route the CoTaskMemAlloc stuff to SHAlloc stuff (which will in turn
// call the OLE task allocator as necessary).
#undef CoTaskMemAlloc
#undef CoTaskMemFree
#undef CoTaskMemRealloc
#define CoTaskMemAlloc SHAlloc
#define CoTaskMemFree SHFree
#define CoTaskMemRealloc SHRealloc
#include "..\..\lib\cnctnpt.cpp"