From 592f3a120153c24cf53bc8535a3b4611dbfe5f1d Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 27 Aug 2008 23:40:44 +0200 Subject: netapi: add AF_OP constants to IDL. Guenther (This used to be commit 2bd24258782811a014a191650883d50d4bf7d0b0) --- source3/librpc/idl/libnetapi.idl | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source3/librpc') diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl index 6853cee439..b80c6fe2b9 100644 --- a/source3/librpc/idl/libnetapi.idl +++ b/source3/librpc/idl/libnetapi.idl @@ -166,6 +166,14 @@ interface libnetapi string usri1_script_path; } USER_INFO_1; + /* auth_flags in USER_INFO_2 */ + + const int AF_OP_PRINT = 0x1; + const int AF_OP_COMM = 0x2; + const int AF_OP_SERVER = 0x4; + const int AF_OP_ACCOUNTS = 0x8; + const int AF_SETTABLE_BITS = (AF_OP_PRINT | AF_OP_COMM | AF_OP_SERVER | AF_OP_ACCOUNTS); + [public] typedef struct { string usri2_name; string usri2_password; -- cgit