mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
854467851d
Signed-off-by: Günther Deschner <gd@samba.org>
19 lines
349 B
Plaintext
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;
|
|
}
|