summaryrefslogtreecommitdiff
path: root/source4/librpc/idl/rot.idl
blob: 5851466c79ae423625a478e04513fc2ae76bc254 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[
	uuid("b9e79e60-3d52-11ce-aaa1-00006901293f"),
	version(0.2),
    	pointer_default(unique),
  	pointer_default_top(unique),
	depends(orpc),
 	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
					   );
}