blob: 8f76a862f34c08c4daa5d550287fd37b67c8cc59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
wkssvc interface definitions
*/
[ uuid(6bffd098-a112-3610-9833-46c3f87e345a),
version(1.0),
pointer_default(unique)
] interface wkssvc
{
/******************/
/* Function: 0x00 */
typedef struct {
uint32 platform_id; /* 0x0000 01f4 - unknown */
unistr *uni_compname; /* unicode server name */
unistr *uni_lan_grp; /* unicode domain name */
uint32 ver_major; /* 4 - unknown */
uint32 ver_minor; /* 0 - unknown */
} wks_Info100;
typedef union {
case (100) wks_Info100 *info100;
} wks_Info;
NTSTATUS wks_QueryInfo(
[in] unistr *server_name,
[in] uint32 level,
[out,switch_is(level)] wks_Info info
);
}
|