diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2004-11-20 18:51:58 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:06:02 -0500 |
commit | d53fd3d8d5c99ae22a4d74065dc45e2f4e36a382 (patch) | |
tree | 905f747872a80efb45ce0d7d331429891bc00b2f /source4/librpc/idl | |
parent | f55ee60575576e2213b234f4690d7a300a8e362e (diff) | |
download | samba-d53fd3d8d5c99ae22a4d74065dc45e2f4e36a382.tar.gz samba-d53fd3d8d5c99ae22a4d74065dc45e2f4e36a382.tar.bz2 samba-d53fd3d8d5c99ae22a4d74065dc45e2f4e36a382.zip |
r3891: Add rot (Running Object Table) interface
(This used to be commit 4840eaeed3cfd72026babb382f26929c29702713)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/rot.idl | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/source4/librpc/idl/rot.idl b/source4/librpc/idl/rot.idl new file mode 100644 index 0000000000..d9a67ecbe1 --- /dev/null +++ b/source4/librpc/idl/rot.idl @@ -0,0 +1,43 @@ +#include "idl_types.h" + +[ + uuid("b9e79e60-3d52-11ce-aaa1-00006901293f"), + version(0.2), + endpoint("ncacn_np:[\\pipe\\epmapper]", "ncacn_ip_tcp:[135]", + "ncalrpc:[EPMAPPER]", "ncacn_unix_stream:[/tmp/epmapper]") +] interface rot +{ + WERROR rot_add ( + [in] uint32 flags, + [in] MInterfacePointer *unk, + [in] MInterfacePointer *moniker, + [out] uint32 rotid + ); + + WERROR rot_remove ( + [in] uint32 rotid + ); + + WERROR rot_is_listed ( + [in] MInterfacePointer *moniker + ); + + WERROR rot_get_interface_pointer ( + [in] MInterfacePointer *moniker, + [out] MInterfacePointer *ip + ); + + WERROR rot_set_modification_time ( + [in] uint32 rotid, + [in] NTTIME *t + ); + + WERROR rot_get_modification_time ( + [in] MInterfacePointer *moniker, + [out] NTTIME t + ); + + WERROR rot_enum ( + [out] MInterfacePointer *EnumMoniker + ); +} |