WindowsXP-SP1/com/oleutest/letest/ole2ui/dballoc.h
2020-09-30 16:53:49 +02:00

37 lines
876 B
C
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/***
*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 */