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