diff options
author | Günther Deschner <gd@samba.org> | 2011-05-13 10:02:42 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-05-16 12:54:33 +0200 |
commit | 854467851da48e02dcd8f869cb031c8943707017 (patch) | |
tree | 0d5e7b3b5b84bb26a32f76fbb9a28f65ef686795 /source3/printing/pcap.h | |
parent | d4d31b31760ac1e7361f453564b63f17685bf58f (diff) | |
download | samba-854467851da48e02dcd8f869cb031c8943707017.tar.gz samba-854467851da48e02dcd8f869cb031c8943707017.tar.bz2 samba-854467851da48e02dcd8f869cb031c8943707017.zip |
s3-printing: Get the location info from cups.
Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'source3/printing/pcap.h')
-rw-r--r-- | source3/printing/pcap.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/printing/pcap.h b/source3/printing/pcap.h index e24142e8b2..e8276f9aad 100644 --- a/source3/printing/pcap.h +++ b/source3/printing/pcap.h @@ -20,13 +20,13 @@ struct pcap_cache; /* The following definitions come from printing/pcap.c */ -bool pcap_cache_add_specific(struct pcap_cache **ppcache, const char *name, const char *comment); +bool pcap_cache_add_specific(struct pcap_cache **ppcache, const char *name, const char *comment, const char *location); void pcap_cache_destroy_specific(struct pcap_cache **ppcache); -bool pcap_cache_add(const char *name, const char *comment); +bool pcap_cache_add(const char *name, const char *comment, const char *location); bool pcap_cache_loaded(void); bool pcap_cache_replace(const struct pcap_cache *cache); -void pcap_printer_fn_specific(const struct pcap_cache *, void (*fn)(const char *, const char *, void *), void *); -void pcap_printer_fn(void (*fn)(const char *, const char *, void *), void *); +void pcap_printer_fn_specific(const struct pcap_cache *, void (*fn)(const char *, const char *, const char *, void *), void *); +void pcap_printer_fn(void (*fn)(const char *, const char *, const char *, void *), void *); void pcap_cache_reload(struct tevent_context *ev, struct messaging_context *msg_ctx, |