diff options
author | Volker Lendecke <vl@samba.org> | 2009-08-04 13:52:39 -0400 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-08-05 03:21:21 -0400 |
commit | 3eff8e93e283828afdb3413aec2dae5c01b101b3 (patch) | |
tree | 2b026feb68c2fb3060d3fdfa0747fbc88b288033 /source3/librpc/gen_ndr/wbint.h | |
parent | 5db561a608a11895d8a9a038a98a9fcc7c867d59 (diff) | |
download | samba-3eff8e93e283828afdb3413aec2dae5c01b101b3.tar.gz samba-3eff8e93e283828afdb3413aec2dae5c01b101b3.tar.bz2 samba-3eff8e93e283828afdb3413aec2dae5c01b101b3.zip |
s3:winbind: Add async wb_uid2sid
Diffstat (limited to 'source3/librpc/gen_ndr/wbint.h')
-rw-r--r-- | source3/librpc/gen_ndr/wbint.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/source3/librpc/gen_ndr/wbint.h b/source3/librpc/gen_ndr/wbint.h index 82160d9494..03f58c813f 100644 --- a/source3/librpc/gen_ndr/wbint.h +++ b/source3/librpc/gen_ndr/wbint.h @@ -79,4 +79,18 @@ struct wbint_Sid2Gid { }; + +struct wbint_Uid2Sid { + struct { + const char *dom_name;/* [unique,charset(UTF8)] */ + uint64_t uid; + } in; + + struct { + struct dom_sid *sid;/* [ref] */ + NTSTATUS result; + } out; + +}; + #endif /* _HEADER_wbint */ |