EPICS Base  7.0.6.1
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
registryCommon.h
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 * 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 
11 #ifndef INC_registryCommon_H
12 #define INC_registryCommon_H
13 
14 #include "dbStaticLib.h"
15 #include "devSup.h"
16 #include "dbJLink.h"
17 #include "registryRecordType.h"
18 #include "dbCoreAPI.h"
19 
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23 
24 DBCORE_API void registerRecordTypes(
25  DBBASE *pbase, int nRecordTypes,
26  const char * const *recordTypeNames, const recordTypeLocation *rtl);
27 DBCORE_API void registerDevices(
28  DBBASE *pbase, int nDevices,
29  const char * const *deviceSupportNames, const dset * const *devsl);
30 DBCORE_API void registerDrivers(
31  DBBASE *pbase, int nDrivers,
32  const char * const *driverSupportNames, struct drvet * const *drvsl);
33 DBCORE_API void registerJLinks(
34  DBBASE *pbase, int nDrivers, jlif * const *jlifsl);
35 
36 #ifdef __cplusplus
37 }
38 #endif
39 
40 #endif /* INC_registryCommon_H */
Definition: drvSup.h:46
Definition: devSup.h:141
Device support routines.
Definition: dbBase.h:171
Definition: dbJLink.h:49