diff options
author | Günther Deschner <gd@samba.org> | 2008-08-27 22:35:14 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-08-29 13:58:01 +0200 |
commit | 6f7afee75188071eb69a2c81e646b3bed4c408e9 (patch) | |
tree | 83035a67b988abda9aeef3d585c991f9eb8a2d1b /source3/librpc | |
parent | 0f928eb2cc0b7fe383cea28eb833d80f69545659 (diff) | |
download | samba-6f7afee75188071eb69a2c81e646b3bed4c408e9.tar.gz samba-6f7afee75188071eb69a2c81e646b3bed4c408e9.tar.bz2 samba-6f7afee75188071eb69a2c81e646b3bed4c408e9.zip |
netapi: add USER_PRIV_* constants to IDL.
Guenther
(This used to be commit 3bb042d0e14e8a4f1feaace7f310143ff44a933a)
Diffstat (limited to 'source3/librpc')
-rw-r--r-- | source3/librpc/idl/libnetapi.idl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl index f5af5445e3..6853cee439 100644 --- a/source3/librpc/idl/libnetapi.idl +++ b/source3/librpc/idl/libnetapi.idl @@ -150,6 +150,11 @@ interface libnetapi string usri0_name; } USER_INFO_0; + /* priv */ + const int USER_PRIV_GUEST = 0; + const int USER_PRIV_USER = 1; + const int USER_PRIV_ADMIN = 2; + [public] typedef struct { string usri1_name; string usri1_password; |