blob: d9c34f3fab717844d9ae8f13f8fd67f881d061fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "idl_types.h"
[
pointer_default(unique)
]
interface printcap
{
typedef struct {
[charset(UTF8),string] uint8 *name;
[charset(UTF8),string] uint8 *info;
[charset(UTF8),string] uint8 *location;
} pcap_printer;
typedef [public] struct {
NTSTATUS status;
uint32 count;
[size_is(count)] pcap_printer printers[];
} pcap_data;
}
|