summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorcvs2svn Import User <samba-bugs@samba.org>2003-05-06 13:10:11 +0000
committercvs2svn Import User <samba-bugs@samba.org>2003-05-06 13:10:11 +0000
commit27610826ad4a3c0acb0a18ad8e5a20d01f86d926 (patch)
tree44dc4f8bf7362c53efa6a48707cd9d53db3c264c /source3
parent2b8d15bea3b8cdce70d9286fe6f6ad269f08f810 (diff)
parent9cd45eeaf96b67dd772a6b8e5ef6df7ea10dfd31 (diff)
downloadsamba-27610826ad4a3c0acb0a18ad8e5a20d01f86d926.tar.gz
samba-27610826ad4a3c0acb0a18ad8e5a20d01f86d926.tar.bz2
samba-27610826ad4a3c0acb0a18ad8e5a20d01f86d926.zip
This commit was manufactured by cvs2svn to create branch 'SAMBA_3_0'.(This used to be commit 8bee59ffcea1495f03b35d38da0eb76955b93f3d)
Diffstat (limited to 'source3')
-rw-r--r--source3/include/privileges.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/source3/include/privileges.h b/source3/include/privileges.h
new file mode 100644
index 0000000000..404c5d246b
--- /dev/null
+++ b/source3/include/privileges.h
@@ -0,0 +1,45 @@
+/*
+ Unix SMB/CIFS implementation.
+ SMB parameters and setup
+ Copyright (C) Andrew Tridgell 1992-1997
+ Copyright (C) Luke Kenneth Casson Leighton 1996-1997
+ Copyright (C) Paul Ashton 1997
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
+#ifndef PRIVILEGES_H
+#define PRIVILEGES_H
+
+typedef struct LUID
+{
+ uint32 low;
+ uint32 high;
+} LUID;
+
+typedef struct LUID_ATTR
+{
+ LUID luid;
+ uint32 attr;
+} LUID_ATTR ;
+
+typedef struct privilege_set
+{
+ uint32 count;
+ uint32 control;
+ LUID_ATTR *set;
+} PRIVILEGE_SET;
+
+#endif /* _RPC_LSA_H */