1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-08 04:58:40 +03:00
Günther Deschner 28ac552381 Re-run make idl. The pidl generated code now fully complies to coding standards.
Guenther
(This used to be commit 3d34c87612138e4457e824e1a6e3981d1c3fe238)
2008-01-09 11:59:52 +01:00

26 lines
852 B
C

#include "librpc/gen_ndr/ndr_unixinfo.h"
#ifndef __CLI_UNIXINFO__
#define __CLI_UNIXINFO__
NTSTATUS rpccli_unixinfo_SidToUid(struct rpc_pipe_client *cli,
TALLOC_CTX *mem_ctx,
struct dom_sid sid,
uint64_t *uid);
NTSTATUS rpccli_unixinfo_UidToSid(struct rpc_pipe_client *cli,
TALLOC_CTX *mem_ctx,
uint64_t uid,
struct dom_sid *sid);
NTSTATUS rpccli_unixinfo_SidToGid(struct rpc_pipe_client *cli,
TALLOC_CTX *mem_ctx,
struct dom_sid sid,
uint64_t *gid);
NTSTATUS rpccli_unixinfo_GidToSid(struct rpc_pipe_client *cli,
TALLOC_CTX *mem_ctx,
uint64_t gid,
struct dom_sid *sid);
NTSTATUS rpccli_unixinfo_GetPWUid(struct rpc_pipe_client *cli,
TALLOC_CTX *mem_ctx,
uint32_t *count,
uint64_t *uids,
struct unixinfo_GetPWUidInfo *infos);
#endif /* __CLI_UNIXINFO__ */