1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-26 21:57:41 +03:00

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>
This commit is contained in:
Samuel Cabrero 2019-10-01 17:14:04 +02:00 committed by Andreas Schneider
parent 8bc228900e
commit 8b761b126c

View File

@ -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_ */