35 lines
1 KiB
Plaintext
35 lines
1 KiB
Plaintext
|
//+---------------------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//
|
||
|
// File: recnotfy.idl
|
||
|
//
|
||
|
// Contents: IDL definition for INotifyReplica interface
|
||
|
//
|
||
|
// Classes:
|
||
|
//
|
||
|
// Functions:
|
||
|
//
|
||
|
// History: 12-12-94 SethuR Created from DavidDi's specs.
|
||
|
//
|
||
|
// Notes: There are some issues regarding this interface that
|
||
|
// needs to be ironed out.
|
||
|
//
|
||
|
// 1) How do we prevent having to know about the global topology
|
||
|
// in the case of INotifyReplica interface ?
|
||
|
//
|
||
|
// This interface needs to be moved to a more global location.
|
||
|
//
|
||
|
//----------------------------------------------------------------------------
|
||
|
|
||
|
#include "idlmulti.h"
|
||
|
|
||
|
REMOTED_INTERFACE(99180163-DA16-101A-935C-444553540000)
|
||
|
interface INotifyReplica : IUnknown
|
||
|
{
|
||
|
HRESULT YouAreAReplica (
|
||
|
[in] ULONG cOtherReplicas,
|
||
|
[size_is(cOtherReplicas,), in,unique] IMoniker **rgpOtherReplicas);
|
||
|
}
|