EPICS Base  7.0.6.1
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
dbDbLink.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 /* dbDbLink.h
11  *
12  * Created on: April 3rd, 2016
13  * Author: Andrew Johnson
14  */
15 
16 #ifndef INC_dbDbLink_H
17 #define INC_dbDbLink_H
18 
19 #include "dbCoreAPI.h"
20 
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
24 
25 struct link;
26 struct dbLocker;
27 
28 DBCORE_API long dbDbInitLink(struct link *plink, short dbfType);
29 DBCORE_API void dbDbAddLink(struct dbLocker *locker, struct link *plink,
30  short dbfType, dbChannel *ptarget);
31 
32 #ifdef __cplusplus
33 }
34 #endif
35 
36 #endif /* INC_dbDbLink_H */