From 7077492778dbda30e5f865ae1d0ab0237e00f54f Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 4 Aug 2009 15:23:13 -0400 Subject: s3:winbind: Add async wb_queryuser --- source3/librpc/gen_ndr/wbint.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'source3/librpc/gen_ndr/wbint.h') diff --git a/source3/librpc/gen_ndr/wbint.h b/source3/librpc/gen_ndr/wbint.h index d6f344e5c9..eb3dd0cd33 100644 --- a/source3/librpc/gen_ndr/wbint.h +++ b/source3/librpc/gen_ndr/wbint.h @@ -8,6 +8,16 @@ #ifndef _HEADER_wbint #define _HEADER_wbint +struct wbint_userinfo { + const char *acct_name;/* [unique,charset(UTF8)] */ + const char *full_name;/* [unique,charset(UTF8)] */ + const char *homedir;/* [unique,charset(UTF8)] */ + const char *shell;/* [unique,charset(UTF8)] */ + uint64_t primary_gid; + struct dom_sid user_sid; + struct dom_sid group_sid; +}/* [public] */; + struct wbint_Ping { struct { @@ -107,4 +117,17 @@ struct wbint_Gid2Sid { }; + +struct wbint_QueryUser { + struct { + struct dom_sid *sid;/* [ref] */ + } in; + + struct { + struct wbint_userinfo *info;/* [ref] */ + NTSTATUS result; + } out; + +}; + #endif /* _HEADER_wbint */ -- cgit