From 9a65c54c72cb5cbbe3d57df32193568850266b3b Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 3 Nov 2004 21:44:18 +0000 Subject: r3514: Allow specification of username, password and domain and try to set up connection. (This used to be commit 8076db7a1f9e11c725e481a0bda4dbc354c9612f) --- source4/librpc/idl/dcom.idl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/librpc/idl') diff --git a/source4/librpc/idl/dcom.idl b/source4/librpc/idl/dcom.idl index d0fae2f0cc..448ed827f9 100644 --- a/source4/librpc/idl/dcom.idl +++ b/source4/librpc/idl/dcom.idl @@ -279,16 +279,16 @@ interface IUnknown /* Function 0x00 */ /* Returns the interface with the specified IID if implemented by this object */ - [local] WERROR QueryInterface([in] IID *riid, + [local] WERROR IUnknown_QueryInterface([in] IID *riid, [out,iid_is(riid)] MInterfacePointer *data); /*****************/ /* Function 0x01 */ - [local] uint32 AddRef(); + [local] uint32 IUnknown_AddRef(); /*****************/ /* Function 0x02 */ - [local] uint32 Release(); + [local] uint32 IUnknown_Release(); } -- cgit