summaryrefslogtreecommitdiff
path: root/librpc/idl/printcap.idl
diff options
context:
space:
mode:
authorDavid Disseldorp <ddiss@suse.de>2011-03-07 15:32:02 +0100
committerAndreas Schneider <asn@cryptomilk.org>2011-03-16 15:52:21 +0100
commit9ea602741934f4e546147fa238332644e8e9f316 (patch)
tree8766cbddc1d895292ca4b8d3bb098694ad42f24a /librpc/idl/printcap.idl
parente084edc16ea909d99453ef7663e0f5ada081fe22 (diff)
downloadsamba-9ea602741934f4e546147fa238332644e8e9f316.tar.gz
samba-9ea602741934f4e546147fa238332644e8e9f316.tar.bz2
samba-9ea602741934f4e546147fa238332644e8e9f316.zip
idl: define printcap IPC message format
Signed-off-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'librpc/idl/printcap.idl')
-rw-r--r--librpc/idl/printcap.idl17
1 files changed, 17 insertions, 0 deletions
diff --git a/librpc/idl/printcap.idl b/librpc/idl/printcap.idl
new file mode 100644
index 0000000000..5ab380ce6c
--- /dev/null
+++ b/librpc/idl/printcap.idl
@@ -0,0 +1,17 @@
+#include "idl_types.h"
+[
+ pointer_default(unique)
+]
+interface printcap
+{
+ typedef struct {
+ [charset(UTF8),string] uint8 *name;
+ [charset(UTF8),string] uint8 *info;
+ } pcap_printer;
+
+ typedef [public] struct {
+ NTSTATUS status;
+ uint32 count;
+ [size_is(count)] pcap_printer printers[];
+ } pcap_data;
+}