diff options
author | Günther Deschner <gd@samba.org> | 2008-06-09 11:00:23 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-06-17 19:59:22 +0200 |
commit | a040b8be7dbbfeeaff1b6f20b90a1d1673cddd77 (patch) | |
tree | 14d2d247db045375709e975c251d9e4e257897e5 /source3/librpc/idl | |
parent | 08cf0bb87876785f0c77f5c867fc0a81d7a0cea1 (diff) | |
download | samba-a040b8be7dbbfeeaff1b6f20b90a1d1673cddd77.tar.gz samba-a040b8be7dbbfeeaff1b6f20b90a1d1673cddd77.tar.bz2 samba-a040b8be7dbbfeeaff1b6f20b90a1d1673cddd77.zip |
netapi: add NetUserEnum filter constants to IDL.
Guenther
(This used to be commit 12669b12c25a64b02c0e49b3ef96cf317992b18c)
Diffstat (limited to 'source3/librpc/idl')
-rw-r--r-- | source3/librpc/idl/libnetapi.idl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl index 94a464d356..07b640d841 100644 --- a/source3/librpc/idl/libnetapi.idl +++ b/source3/librpc/idl/libnetapi.idl @@ -181,6 +181,12 @@ interface libnetapi /* NetUserEnum */ /*******************************************/ + const int FILTER_TEMP_DUPLICATE_ACCOUNT = 0x0001; + const int FILTER_NORMAL_ACCOUNT = 0x0002; + const int FILTER_INTERDOMAIN_TRUST_ACCOUNT = 0x0008; + const int FILTER_WORKSTATION_TRUST_ACCOUNT = 0x0010; + const int FILTER_SERVER_TRUST_ACCOUNT = 0x0020; + [nopush,nopull] NET_API_STATUS NetUserEnum( [in,unique] string *server_name, [in] uint32 level, |