From 6ef03e7a846a4b858eec0b9953f03306f46b77e3 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 1 Nov 2004 12:40:43 +0000 Subject: r3432: Support WERROR's in arguments (not just as return type). Some of the DCOM calls are wrappers around several local calls, so you get things like: WERROR foobar ( [in] int num_ifaces, [in,size_is(num_ifaces)] IID *ifaces, [out,size_is(num_ifaces)] WERROR *results); (This used to be commit 0873bf2cbe3589988e518cf68ad4d14343b9240b) --- source4/librpc/idl/remact.idl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'source4/librpc/idl/remact.idl') diff --git a/source4/librpc/idl/remact.idl b/source4/librpc/idl/remact.idl index 51e2b6d735..1d54148f5e 100644 --- a/source4/librpc/idl/remact.idl +++ b/source4/librpc/idl/remact.idl @@ -6,7 +6,6 @@ */ #define IPID GUID -#define HRESULT uint32 [ uuid("4d9f4ab8-7d1c-11cf-861e-0020af6e7c57"), @@ -42,8 +41,8 @@ interface IRemoteActivation [out] IPID ipidRemUnknown, [out] uint32 AuthnHint, [out] COMVERSION ServerVersion, - [out] HRESULT hr, + [out] WERROR hr, [out,size_is(Interfaces)] MInterfacePointer ifaces[], - [out,size_is(Interfaces)] HRESULT results[] + [out,size_is(Interfaces)] WERROR results[] ); } -- cgit