diff options
Diffstat (limited to 'tests/runtime-dummy.c')
-rw-r--r-- | tests/runtime-dummy.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/runtime-dummy.c b/tests/runtime-dummy.c index 9cddd913..5a9039bf 100644 --- a/tests/runtime-dummy.c +++ b/tests/runtime-dummy.c @@ -25,17 +25,22 @@ * * A copy of the GPL can be found in the file "COPYING" in this distribution. */ +#include "config.h" #include <stdlib.h> +#include "rsyslog.h" int bReduceRepeatMsgs = 0; int repeatinterval = 30; int bActExecWhenPrevSusp = 0; int iActExecOnceInterval = 1; int MarkInterval = 30; +void *pMsgQueue = NULL; void cflineClassic(void) {}; void selectorAddList(void) {}; void selectorConstruct(void) {}; void selectorDestruct(void) {}; +rsRetVal createMainQueue(void) { return RS_RET_ERR; } +ruleset_t *pCurrRuleset; /* these are required by some dynamically loaded modules */ |