diff options
author | Luke Leighton <lkcl@samba.org> | 1999-11-06 20:36:07 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-11-06 20:36:07 +0000 |
commit | 4dbd1c135ca286f59a5f692abd51a0c78f4cb6a0 (patch) | |
tree | 1827e581147bf7cbde9ded3ba1dc01861d49de43 /source3/include/proto.h | |
parent | 0f18ca772da544a93799ca130a8f23529aad98f6 (diff) | |
download | samba-4dbd1c135ca286f59a5f692abd51a0c78f4cb6a0.tar.gz samba-4dbd1c135ca286f59a5f692abd51a0c78f4cb6a0.tar.bz2 samba-4dbd1c135ca286f59a5f692abd51a0c78f4cb6a0.zip |
fixed string function for reading in printer_info_N.
(This used to be commit 0249ae50ad8135cf3fd11a3b85f771f2347fcb29)
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 1bd5d131b5..d56fbf6fa6 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -3587,6 +3587,16 @@ void display_sam_unk_info_2(FILE *out_hnd, enum action_type action, SAM_UNK_INFO_2 *info2); void display_sam_unk_ctr(FILE *out_hnd, enum action_type action, uint32 switch_value, SAM_UNK_CTR *ctr); +void display_print_info_0(FILE *out_hnd, enum action_type action, + PRINTER_INFO_0 *i0); +void display_print_info_1(FILE *out_hnd, enum action_type action, + PRINTER_INFO_1 *i1); +void display_printer_info_0_ctr(FILE *out_hnd, enum action_type action, + uint32 count, PRINTER_INFO_0 **ctr); +void display_printer_info_1_ctr(FILE *out_hnd, enum action_type action, + uint32 count, PRINTER_INFO_1 **ctr); +void display_printer_info_ctr(FILE *out_hnd, enum action_type action, + uint32 level, uint32 count, void **ctr); /*The following definitions come from rpcclient/rpcclient.c */ |