This is Unofficial EPICS BASE Doxygen Site
registryFunction.h
Go to the documentation of this file.
1 /*************************************************************************\
2 * Copyright (c) 2007 UChicago Argonne LLC, as Operator of Argonne
3 * National Laboratory.
4 * Copyright (c) 2002 The Regents of the University of California, as
5 * Operator of Los Alamos National Laboratory.
6 * EPICS BASE is distributed subject to a Software License Agreement found
7 * in file LICENSE that is included with this distribution.
8 \*************************************************************************/
9 
10 #ifndef INC_registryFunction_H
11 #define INC_registryFunction_H
12 
13 #include "shareLib.h"
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
19 typedef void (*REGISTRYFUNCTION)(void);
20 
21 typedef struct registryFunctionRef {
22  const char * name;
25 
26 
28  const char *name, REGISTRYFUNCTION func);
30  const char *name);
32  registryFunctionRef ref[], int nfunctions);
33 
34 #ifdef __cplusplus
35 }
36 #endif
37 
38 
39 #endif /* INC_registryFunction_H */
epicsShareFunc int registryFunctionAdd(const char *name, REGISTRYFUNCTION func)
void(* REGISTRYFUNCTION)(void)
struct registryFunctionRef registryFunctionRef
#define epicsShareFunc
Definition: shareLib.h:209
Mark external symbols and entry points for shared libraries.
REGISTRYFUNCTION addr
epicsShareFunc REGISTRYFUNCTION registryFunctionFind(const char *name)
epicsShareFunc int registryFunctionRefAdd(registryFunctionRef ref[], int nfunctions)