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.
37 lines
876 B
37 lines
876 B
/***
|
|
*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 */
|
|
|