diff options
Diffstat (limited to 'source3/winbindd/winbindd_rpc.h')
-rw-r--r-- | source3/winbindd/winbindd_rpc.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/winbindd/winbindd_rpc.h b/source3/winbindd/winbindd_rpc.h index 5ba5bf4ce5..99006d4655 100644 --- a/source3/winbindd/winbindd_rpc.h +++ b/source3/winbindd/winbindd_rpc.h @@ -47,4 +47,14 @@ NTSTATUS rpc_enum_local_groups(TALLOC_CTX *mem_ctx, uint32_t *pnum_info, struct acct_info **pinfo); +/* Convert a single name to a sid in a domain */ +NTSTATUS rpc_name_to_sid(TALLOC_CTX *mem_ctx, + struct rpc_pipe_client *lsa_pipe, + struct policy_handle *lsa_policy, + const char *domain_name, + const char *name, + uint32_t flags, + struct dom_sid *psid, + enum lsa_SidType *ptype); + #endif /* _WINBINDD_RPC_H_ */ |