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.

42 lines
994 B

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: updatelog.h
  4. // Copyright (C) 1994-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. //
  8. //
  9. //-----------------------------------------------------------------------------
  10. #ifndef PBASE_UPDATELOG_H
  11. #define PBASE_UPDATELOG_H
  12. extern const IID IID_ILocUpdateLog;
  13. DECLARE_INTERFACE_(ILocUpdateLog, IUnknown)
  14. {
  15. //
  16. // IUnknown standard Interface
  17. //
  18. STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID FAR*ppvObj) PURE;
  19. STDMETHOD_(ULONG, AddRef)(THIS) PURE;
  20. STDMETHOD_(ULONG, Release)(THIS) PURE;
  21. //
  22. // Standard Debugging interfaces
  23. //
  24. STDMETHOD_(void, AssertValidInterface)(THIS) CONST_METHOD PURE;
  25. STDMETHOD_(BOOL, ReportItemDifferences)
  26. (THIS_ const CLocItem *pOldItem, const CLocItem *pNewItem,
  27. CItemInfo *, CLogFile *) PURE;
  28. };
  29. struct __declspec(uuid("{6005AF23-EE76-11d0-A599-00C04FC2C6D8}")) ILocUpdateLog;
  30. #endif