From: Volker Lendecke Date: Wed, 31 Mar 2021 11:21:52 +0000 (+0000) Subject: lib: Add required includes to source3/lib/background.h X-Git-Tag: tevent-0.11.0~1332 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=74720bd9acd4951dd03f562748cae4dbe26092a0;p=thirdparty%2Fsamba.git lib: Add required includes to source3/lib/background.h Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source3/lib/background.h b/source3/lib/background.h index ccfd62bfce2..8c8fe22ffa6 100644 --- a/source3/lib/background.h +++ b/source3/lib/background.h @@ -20,6 +20,12 @@ #ifndef _LIB_BACKGROUND_H_ #define _LIB_BACKGROUND_H_ +#include "replace.h" +#include +#include "libcli/util/ntstatus.h" + +struct messaging_context; + /* * From a parent process regularly fork a process and execute fn(). fn() * returns the number of seconds to wait before it is run next time. Returning