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.

34 lines
1.0 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (c) Microsoft Corporation. All rights reserved.
  5. //
  6. // File: recnotfy.idl
  7. //
  8. // Contents: IDL definition for INotifyReplica interface
  9. //
  10. // Classes:
  11. //
  12. // Functions:
  13. //
  14. // History: 12-12-94 SethuR Created from DavidDi's specs.
  15. //
  16. // Notes: There are some issues regarding this interface that
  17. // needs to be ironed out.
  18. //
  19. // 1) How do we prevent having to know about the global topology
  20. // in the case of INotifyReplica interface ?
  21. //
  22. // This interface needs to be moved to a more global location.
  23. //
  24. //----------------------------------------------------------------------------
  25. #include "idlmulti.h"
  26. REMOTED_INTERFACE(99180163-DA16-101A-935C-444553540000)
  27. interface INotifyReplica : IUnknown
  28. {
  29. HRESULT YouAreAReplica (
  30. [in] ULONG cOtherReplicas,
  31. [size_is(cOtherReplicas,), in,unique] IMoniker **rgpOtherReplicas);
  32. }