summaryrefslogtreecommitdiff
path: root/source3/printing
diff options
context:
space:
mode:
authorSamuel Cabrero <scabrero@samba.org>2019-10-01 17:14:04 +0200
committerAndreas Schneider <asn@cryptomilk.org>2019-10-18 16:07:35 +0000
commit8b761b126c1a476a2ac36c90c87d0183ba34f4a8 (patch)
tree4b01e4cb160a0e0cde3ea559412d12a5116e926f /source3/printing
parent8bc228900e8cbc271543add56a2fc98002548a55 (diff)
downloadsamba-8b761b126c1a476a2ac36c90c87d0183ba34f4a8.tar.gz
s3:printing: Add header inclusion guards in queue_process.h
Signed-off-by: Samuel Cabrero <scabrero@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3/printing')
-rw-r--r--source3/printing/queue_process.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/printing/queue_process.h b/source3/printing/queue_process.h
index b7693649527..a325f13d329 100644
--- a/source3/printing/queue_process.h
+++ b/source3/printing/queue_process.h
@@ -20,6 +20,9 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#ifndef _SOURCE3_PRINTING_QUEUE_PROCESS_H_
+#define _SOURCE3_PRINTING_QUEUE_PROCESS_H_
+
bool printing_subsystem_init(struct tevent_context *ev_ctx,
struct messaging_context *msg_ctx,
bool start_daemons,
@@ -30,3 +33,5 @@ void printing_subsystem_update(struct tevent_context *ev_ctx,
pid_t start_background_queue(struct tevent_context *ev,
struct messaging_context *msg,
char *logfile);
+
+#endif /* _SOURCE3_PRINTING_QUEUE_PROCESS_H_ */