mirror of
https://github.com/samba-team/samba.git
synced 2025-01-17 02:05:21 +03:00
4003edf0df
(This used to be commit b84370513fbf790e599c33f177fb271a2a992b72)
83 lines
1.2 KiB
C
83 lines
1.2 KiB
C
/* header auto-generated by pidl */
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "librpc/gen_ndr/security.h"
|
|
#ifndef _HEADER_unixinfo
|
|
#define _HEADER_unixinfo
|
|
|
|
struct unixinfo_GetPWUidInfo {
|
|
NTSTATUS status;
|
|
const char * homedir;/* [flag(LIBNDR_FLAG_STR_UTF8|LIBNDR_FLAG_STR_NULLTERM)] */
|
|
const char * shell;/* [flag(LIBNDR_FLAG_STR_UTF8|LIBNDR_FLAG_STR_NULLTERM)] */
|
|
};
|
|
|
|
|
|
struct unixinfo_SidToUid {
|
|
struct {
|
|
struct dom_sid sid;
|
|
} in;
|
|
|
|
struct {
|
|
uint64_t *uid;/* [ref] */
|
|
NTSTATUS result;
|
|
} out;
|
|
|
|
};
|
|
|
|
|
|
struct unixinfo_UidToSid {
|
|
struct {
|
|
uint64_t uid;
|
|
} in;
|
|
|
|
struct {
|
|
struct dom_sid *sid;/* [ref] */
|
|
NTSTATUS result;
|
|
} out;
|
|
|
|
};
|
|
|
|
|
|
struct unixinfo_SidToGid {
|
|
struct {
|
|
struct dom_sid sid;
|
|
} in;
|
|
|
|
struct {
|
|
uint64_t *gid;/* [ref] */
|
|
NTSTATUS result;
|
|
} out;
|
|
|
|
};
|
|
|
|
|
|
struct unixinfo_GidToSid {
|
|
struct {
|
|
uint64_t gid;
|
|
} in;
|
|
|
|
struct {
|
|
struct dom_sid *sid;/* [ref] */
|
|
NTSTATUS result;
|
|
} out;
|
|
|
|
};
|
|
|
|
|
|
struct unixinfo_GetPWUid {
|
|
struct {
|
|
uint64_t *uids;/* [size_is(*count)] */
|
|
uint32_t *count;/* [ref,range(0 1023)] */
|
|
} in;
|
|
|
|
struct {
|
|
struct unixinfo_GetPWUidInfo *infos;/* [size_is(*count)] */
|
|
uint32_t *count;/* [ref,range(0 1023)] */
|
|
NTSTATUS result;
|
|
} out;
|
|
|
|
};
|
|
|
|
#endif /* _HEADER_unixinfo */
|