s3-printing: Get the location info from cups.
[obnox/samba-ctdb.git] / librpc / idl / printcap.idl
1 #include "idl_types.h"
2 [
3         pointer_default(unique)
4 ]
5 interface printcap
6 {
7         typedef struct {
8                 [charset(UTF8),string] uint8 *name;
9                 [charset(UTF8),string] uint8 *info;
10                 [charset(UTF8),string] uint8 *location;
11         } pcap_printer;
12
13         typedef [public] struct {
14                 NTSTATUS status;
15                 uint32 count;
16                 [size_is(count)] pcap_printer printers[];
17         } pcap_data;
18 }