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.1 KiB
34 lines
1.1 KiB
//+---------------------------------------------------------------------------
|
|
//
|
|
// 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);
|
|
}
|