EPICS Base  7.0.6.1
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
dbConstLink.h
1 /*************************************************************************\
2 * Copyright (c) 2016 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 * SPDX-License-Identifier: EPICS
7 * EPICS BASE is distributed subject to a Software License Agreement found
8 * in file LICENSE that is included with this distribution.
9 \*************************************************************************/
10 /* dbConstLink.h
11  *
12  * Created on: April 3rd, 2016
13  * Author: Andrew Johnson
14  */
15 
16 #ifndef INC_dbConstLink_H
17 #define INC_dbConstLink_H
18 
19 #include "dbCoreAPI.h"
20 
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
24 
25 struct link;
26 
27 DBCORE_API void dbConstInitLink(struct link *plink);
28 DBCORE_API void dbConstAddLink(struct link *plink);
29 
30 #ifdef __cplusplus
31 }
32 #endif
33 
34 #endif /* INC_dbConstLink_H */
35