1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/librpc/idl/printcap.idl
Günther Deschner 854467851d s3-printing: Get the location info from cups.
Signed-off-by: Günther Deschner <gd@samba.org>
2011-05-16 12:54:33 +02:00

19 lines
349 B
Plaintext

#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;
}