blob: a5a6a135495142c2bbefce97679faf0c5351a0ef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1993.
//
// 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);
}
|