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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
349 B
Plaintext
Raw Normal View History

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