privatize evSubscrip

This commit is contained in:
Michael Davidsaver
2023-09-14 09:20:43 +02:00
parent 5aca4c684c
commit 3d25756065
3 changed files with 11 additions and 2 deletions
+8 -2
View File
@@ -41,7 +41,12 @@ extern "C" {
/**
* event subscription
*/
typedef struct evSubscrip {
struct evSubscrip;
typedef struct evSubscrip evSubscrip;
#ifdef EPICS_PRIVATE_API
struct evSubscrip {
ELLNODE node;
struct dbChannel * chan;
EVENTFUNC * user_sub;
@@ -54,7 +59,8 @@ typedef struct evSubscrip {
char useValque;
char callBackInProgress;
char enabled;
} evSubscrip;
};
#endif
typedef struct chFilter chFilter;
+1
View File
@@ -18,6 +18,7 @@
* Ralph Lange <Ralph.Lange@bessy.de>
*/
#define EPICS_PRIVATE_API
#include <stddef.h>
#include <stdlib.h>
#include <stdio.h>