diff options
author | Volker Lendecke <vl@samba.org> | 2009-08-04 07:22:34 -0400 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-08-05 03:21:20 -0400 |
commit | a5416770776c0ade8518e8875d47097662b026a6 (patch) | |
tree | 6841769c032619044cc733424c2643f6b5d2ac76 /source3/librpc/gen_ndr/wbint.h | |
parent | f6554611ab90aa113a7579ce3a9fef765c19d98c (diff) | |
download | samba-a5416770776c0ade8518e8875d47097662b026a6.tar.gz samba-a5416770776c0ade8518e8875d47097662b026a6.tar.bz2 samba-a5416770776c0ade8518e8875d47097662b026a6.zip |
s3:winbind: Add async wb_lookupname
Diffstat (limited to 'source3/librpc/gen_ndr/wbint.h')
-rw-r--r-- | source3/librpc/gen_ndr/wbint.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/source3/librpc/gen_ndr/wbint.h b/source3/librpc/gen_ndr/wbint.h index 2cc59b3f96..a007b95b18 100644 --- a/source3/librpc/gen_ndr/wbint.h +++ b/source3/librpc/gen_ndr/wbint.h @@ -35,4 +35,20 @@ struct wbint_LookupSid { }; + +struct wbint_LookupName { + struct { + const char *domain;/* [ref,charset(UTF8)] */ + const char *name;/* [ref,charset(UTF8)] */ + uint32_t flags; + } in; + + struct { + enum lsa_SidType *type;/* [ref] */ + struct dom_sid *sid;/* [ref] */ + NTSTATUS result; + } out; + +}; + #endif /* _HEADER_wbint */ |