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/idl | |
parent | f6554611ab90aa113a7579ce3a9fef765c19d98c (diff) | |
download | samba-a5416770776c0ade8518e8875d47097662b026a6.tar.gz samba-a5416770776c0ade8518e8875d47097662b026a6.tar.xz samba-a5416770776c0ade8518e8875d47097662b026a6.zip |
s3:winbind: Add async wb_lookupname
Diffstat (limited to 'source3/librpc/idl')
-rw-r--r-- | source3/librpc/idl/wbint.idl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/librpc/idl/wbint.idl b/source3/librpc/idl/wbint.idl index d0611e8a1b..d72309bd80 100644 --- a/source3/librpc/idl/wbint.idl +++ b/source3/librpc/idl/wbint.idl @@ -21,4 +21,12 @@ interface wbint [out,string,charset(UTF8)] char **domain, [out,string,charset(UTF8)] char **name ); + + NTSTATUS wbint_LookupName( + [in,string,charset(UTF8)] char *domain, + [in,string,charset(UTF8)] char *name, + [in] uint32 flags, + [out] lsa_SidType *type, + [out] dom_sid *sid + ); }
\ No newline at end of file |