From: Günther Deschner Date: Wed, 27 Aug 2008 21:40:44 +0000 (+0200) Subject: netapi: add AF_OP constants to IDL. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2bd24258782811a014a191650883d50d4bf7d0b0;p=thirdparty%2Fsamba.git netapi: add AF_OP constants to IDL. Guenther --- diff --git a/source/librpc/idl/libnetapi.idl b/source/librpc/idl/libnetapi.idl index 6853cee4391..b80c6fe2b95 100644 --- a/source/librpc/idl/libnetapi.idl +++ b/source/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;