Leaked source code of windows server 2003
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.

36 lines
876 B

  1. /***
  2. *dballoc.h
  3. *
  4. * Copyright (C) 1992-93, Microsoft Corporation. All Rights Reserved.
  5. *
  6. *Purpose:
  7. * This file contains the definition of CDbAlloc - A debug implementation
  8. * of the IMalloc interface.
  9. *
  10. *Implementation Notes:
  11. *
  12. *****************************************************************************/
  13. #ifndef DBALLOC_H_INCLUDED /* { */
  14. #define DBALLOC_H_INCLUDED
  15. interface IDbOutput : public IUnknown
  16. {
  17. STDMETHOD(QueryInterface)(THIS_ REFIID riid, void FAR* FAR* ppv) PURE;
  18. STDMETHOD_(ULONG, AddRef)(THIS) PURE;
  19. STDMETHOD_(ULONG, Release)(THIS) PURE;
  20. STDMETHOD_(void, Printf)(THIS_
  21. TCHAR FAR* szFmt, ...) PURE;
  22. STDMETHOD_(void, Assertion)(THIS_
  23. BOOL cond,
  24. TCHAR FAR* szExpr,
  25. TCHAR FAR* szFile,
  26. UINT uLine,
  27. TCHAR FAR* szMsg) PURE;
  28. };
  29. #endif /* } DBALLOC_H_INCLUDED */
  30.