1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-14 00:58:38 +03:00

libnetapi: Add IDL for NetQueryDisplayInformation.

Guenther
(This used to be commit 1200eb474c145fdde91bc39546454015fecf22f0)
This commit is contained in:
Günther Deschner 2008-04-13 18:59:42 +02:00
parent 1c7e4e8a2a
commit f34245238a

View File

@ -133,4 +133,39 @@ interface libnetapi
[out,ref] uint32 *total_entries,
[in,out,ref] uint32 *resume_handle
);
[public] typedef struct {
string usri1_name;
string usri1_comment;
uint32 usri1_flags;
string usri1_full_name;
uint32 usri1_user_id;
uint32 usri1_next_index;
} NET_DISPLAY_USER;
[public] typedef struct {
string usri2_name;
string usri2_comment;
uint32 usri2_flags;
uint32 usri2_user_id;
uint32 usri2_next_index;
} NET_DISPLAY_MACHINE;
[public] typedef struct {
string grpi3_name;
string grpi3_comment;
uint32 grpi3_group_id;
uint32 grpi3_attributes;
uint32 grpi3_next_index;
} NET_DISPLAY_GROUP;
[nopush,nopull] NET_API_STATUS NetQueryDisplayInformation(
[in,unique] string *server_name,
[in] uint32 level,
[in] uint32 idx,
[in] uint32 entries_requested,
[in] uint32 prefmaxlen,
[out,ref] uint32 *entries_read,
[out,ref,noprint] void **buffer
);
}