summaryrefslogtreecommitdiff
path: root/librpc
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2012-07-06 18:04:33 +0200
committerGünther Deschner <gd@samba.org>2012-07-06 19:03:19 +0200
commit66514f8bbe5f9e2dcd8be90450ef339305a3161c (patch)
tree9b8def1691d1bc06425274df0ba55f6e3a828364 /librpc
parentd27a9c4e432c714765c9b0bb67409f06c7fd7709 (diff)
downloadsamba-66514f8bbe5f9e2dcd8be90450ef339305a3161c.tar.gz
samba-66514f8bbe5f9e2dcd8be90450ef339305a3161c.tar.bz2
samba-66514f8bbe5f9e2dcd8be90450ef339305a3161c.zip
ntprinting: make decode_ntprinting helpers public in idl.
Guenther
Diffstat (limited to 'librpc')
-rw-r--r--librpc/idl/ntprinting.idl6
1 files changed, 3 insertions, 3 deletions
diff --git a/librpc/idl/ntprinting.idl b/librpc/idl/ntprinting.idl
index 909829170d..7013566672 100644
--- a/librpc/idl/ntprinting.idl
+++ b/librpc/idl/ntprinting.idl
@@ -26,7 +26,7 @@ interface ntprinting
uint32 bottom;
} ntprinting_form;
- void decode_ntprinting_form(
+ [public] void decode_ntprinting_form(
[in] ntprinting_form form
);
@@ -46,7 +46,7 @@ interface ntprinting
[flag(STR_UTF8|STR_NOTERM|NDR_REMAINING)] string_array dependent_files;
} ntprinting_driver;
- void decode_ntprinting_driver(
+ [public] void decode_ntprinting_driver(
[in] ntprinting_driver driver
);
@@ -146,7 +146,7 @@ interface ntprinting
ntprinting_printer_data printer_data[count];
} ntprinting_printer;
- void decode_ntprinting_printer(
+ [public] void decode_ntprinting_printer(
[in] ntprinting_printer printer
);
}