summaryrefslogtreecommitdiff
path: root/source4/librpc/ndr/ndr_lsa.h
blob: c19a884536c21985551980b62e69bb9c40571991 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/* header auto-generated by pidl */

struct lsa_QosInfo {
	uint16 impersonation_level;
	uint8 context_mode;
	uint8 effective_only;
};

struct lsa_ObjectAttribute {
	uint8 *root_dir;
	const char *object_name;
	uint32 attributes;
	struct security_descriptor *sec_desc;
	struct lsa_QosInfo *sec_qos;
};

struct lsa_OpenPolicy {
	struct {
		uint16 *system_name;
		struct lsa_ObjectAttribute *attr;
		uint32 desired_access;
	} in;

	struct {
		struct policy_handle *handle;
		NTSTATUS result;
	} out;

};

struct lsa_OpenPolicy2 {
	struct {
		const char *system_name;
		struct lsa_ObjectAttribute *attr;
		uint32 desired_access;
	} in;

	struct {
		struct policy_handle *handle;
		NTSTATUS result;
	} out;

};

struct lsa_SidPtr {
	struct dom_sid2 *sid;
};

struct lsa_SidArray {
	uint32 num_sids;
	struct lsa_SidPtr *sids;
};

struct lsa_EnumSids {
	struct {
		struct policy_handle *handle;
		uint32 *resume_handle;
		uint32 num_entries;
	} in;

	struct {
		uint32 *resume_handle;
		struct lsa_SidArray *sids;
		NTSTATUS result;
	} out;

};