mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
08e6d241a9
Guenther Signed-off-by: Günther Deschner <gd@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
45 lines
807 B
Plaintext
45 lines
807 B
Plaintext
import "orpc.idl";
|
|
|
|
[
|
|
uuid("b9e79e60-3d52-11ce-aaa1-00006901293f"),
|
|
version(0.2),
|
|
pointer_default(unique),
|
|
endpoint("ncacn_np:[\\pipe\\epmapper]", "ncacn_ip_tcp:[135]",
|
|
"ncalrpc:[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
|
|
);
|
|
}
|