Source code of Windows XP (NT5)
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.

40 lines
947 B

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: idupdate.h
  4. // Copyright (C) 1994-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. //
  8. //
  9. //-----------------------------------------------------------------------------
  10. #ifndef PBASE_IDUPDATE_H
  11. #define PBASE_IDUPDATE_H
  12. extern const IID IID_ILocIDUpdate;
  13. DECLARE_INTERFACE_(ILocIDUpdate, 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 interface.
  23. //
  24. STDMETHOD_(void, AssertValidInterface)(THIS) CONST_METHOD PURE;
  25. //
  26. // ID Update methods.
  27. //
  28. STDMETHOD_(BOOL, RequiresUpdate)(THIS_ FileType) PURE;
  29. STDMETHOD_(FileType, GetUpdatedFileType)(THIS_ FileType) PURE;
  30. STDMETHOD_(BOOL, GetOldUniqueId)(THIS_ CLocUniqueId REFERENCE) PURE;
  31. };
  32. #endif