mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
d6b3fce078
This makes it a bit more similar to the Samba4 code.
(This used to be commit 0596badb41
)
12 lines
595 B
C
12 lines
595 B
C
#include "librpc/gen_ndr/ndr_unixinfo.h"
|
|
#ifndef __SRV_UNIXINFO__
|
|
#define __SRV_UNIXINFO__
|
|
NTSTATUS _unixinfo_SidToUid(pipes_struct *p, struct unixinfo_SidToUid *r);
|
|
NTSTATUS _unixinfo_UidToSid(pipes_struct *p, struct unixinfo_UidToSid *r);
|
|
NTSTATUS _unixinfo_SidToGid(pipes_struct *p, struct unixinfo_SidToGid *r);
|
|
NTSTATUS _unixinfo_GidToSid(pipes_struct *p, struct unixinfo_GidToSid *r);
|
|
NTSTATUS _unixinfo_GetPWUid(pipes_struct *p, struct unixinfo_GetPWUid *r);
|
|
void unixinfo_get_pipe_fns(struct api_struct **fns, int *n_fns);
|
|
NTSTATUS rpc_unixinfo_init(void);
|
|
#endif /* __SRV_UNIXINFO__ */
|