source: branches/samba-3.5.x/source3/librpc/idl/printcap.idl

Last change on this file was 603, checked in by Herwig Bauernfeind, 14 years ago

Samba 3.5: Update missing files in trunk

File size: 324 bytes
Line 
1#include "idl_types.h"
2[
3 pointer_default(unique)
4]
5interface printcap
6{
7 typedef struct {
8 [charset(UTF8),string] uint8 *name;
9 [charset(UTF8),string] uint8 *info;
10 } pcap_printer;
11
12 typedef [public] struct {
13 NTSTATUS status;
14 uint32 count;
15 [size_is(count)] pcap_printer printers[];
16 } pcap_data;
17}
Note: See TracBrowser for help on using the repository browser.