windows-nt/Source/XPSP1/NT/com/oleutest/letest/ole2ui/dballoc.h

37 lines
840 B
C
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
/***
*dballoc.h
*
* Copyright (C) 1992-93, Microsoft Corporation. All Rights Reserved.
*
*Purpose:
* This file contains the definition of CDbAlloc - A debug implementation
* of the IMalloc interface.
*
*Implementation Notes:
*
*****************************************************************************/
#ifndef DBALLOC_H_INCLUDED /* { */
#define DBALLOC_H_INCLUDED
interface IDbOutput : public IUnknown
{
STDMETHOD(QueryInterface)(THIS_ REFIID riid, void FAR* FAR* ppv) PURE;
STDMETHOD_(ULONG, AddRef)(THIS) PURE;
STDMETHOD_(ULONG, Release)(THIS) PURE;
STDMETHOD_(void, Printf)(THIS_
TCHAR FAR* szFmt, ...) PURE;
STDMETHOD_(void, Assertion)(THIS_
BOOL cond,
TCHAR FAR* szExpr,
TCHAR FAR* szFile,
UINT uLine,
TCHAR FAR* szMsg) PURE;
};
#endif /* } DBALLOC_H_INCLUDED */