From fab02bf5182ad1b905351c0a8b1fd75cd86541c2 Mon Sep 17 00:00:00 2001 From: Ralph Lange Date: Mon, 24 Nov 2025 09:32:54 +0100 Subject: [PATCH] Add HAS_... macro for changed caPutLogInit() API --- caPutLogApp/caPutLog.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/caPutLogApp/caPutLog.h b/caPutLogApp/caPutLog.h index 1cf550d..00ad448 100644 --- a/caPutLogApp/caPutLog.h +++ b/caPutLogApp/caPutLog.h @@ -17,6 +17,9 @@ extern "C" { #define caPutLogAll 1 /* log all puts */ #define caPutLogAllNoFilter 2 /* log all puts no filtering on same PV*/ +/* Make API change in R4.1 detectable */ +#define HAS_caPutLogInit_arg3timeout + epicsShareFunc int caPutLogInit (const char *addr_str, int config, double timeout); epicsShareFunc int caPutLogReconf (int config, double timeout); epicsShareFunc void caPutLogShow (int level);