summaryrefslogtreecommitdiff
path: root/source4/librpc/idl/remact.idl
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-03-07 02:14:38 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:10:59 -0500
commitd892500e733fa2c85f950b69f11546c0f037a25a (patch)
treed6fc1108c26b0f7fdfaf709393d8e2aaf0f188ef /source4/librpc/idl/remact.idl
parentdd2aefd56b0968da8b1c4d055bc8c2f30382fb23 (diff)
downloadsamba-d892500e733fa2c85f950b69f11546c0f037a25a.tar.gz
samba-d892500e733fa2c85f950b69f11546c0f037a25a.tar.bz2
samba-d892500e733fa2c85f950b69f11546c0f037a25a.zip
r5676: Fix some alignment issues and IRemoteActivation
(This used to be commit a9b13f67012d235d98920e639f59411d57a79bd7)
Diffstat (limited to 'source4/librpc/idl/remact.idl')
-rw-r--r--source4/librpc/idl/remact.idl8
1 files changed, 6 insertions, 2 deletions
diff --git a/source4/librpc/idl/remact.idl b/source4/librpc/idl/remact.idl
index ca1b228d4c..7a879e717f 100644
--- a/source4/librpc/idl/remact.idl
+++ b/source4/librpc/idl/remact.idl
@@ -21,7 +21,11 @@ interface IRemoteActivation
RPC_C_IMP_LEVEL_IMPERSONATE = 3,
RPC_C_IMP_LEVEL_DELEGATE = 4
} imp_levels;
-
+
+ typedef struct {
+ MInterfacePointer *ip;
+ } pMInterfacePointer;
+
const uint32 MODE_GET_CLASS_OBJECT = 0xffffffff;
WERROR RemoteActivation (
[in] ORPCTHIS this,
@@ -41,7 +45,7 @@ interface IRemoteActivation
[out] uint32 AuthnHint,
[out] COMVERSION ServerVersion,
[out] WERROR hr,
- [out,size_is(Interfaces)] MInterfacePointer *ifaces[],
+ [out,size_is(Interfaces)] pMInterfacePointer ifaces[],
[out,size_is(Interfaces)] WERROR results[]
);
}