1#include <compat/dcerpc.idl.include>
2
3[ uuid(5ab2e9b4-3d48-11d2-9ea4-80c5140aaa78),
4  version(1.0),
5  pointer_default(ptr),
6  endpoint("ncacn_np:[\\pipe\\demo_access], ncalrpc:[demo_access]")
7]
8
9interface access
10{
11    typedef [ptr, string] char * string_t;
12
13    void
14    WhoAmI(
15	[in] handle_t            	h,
16        [out, ref] string_t* sid
17        );
18}
19