git ls-files modules/database/src/ioc|egrep '\.[hc]p*$' | xargs sed -i \ -e 's|epicsShareFunc|DBCORE_API|g' \ -e 's|epicsShareClass|DBCORE_API|g' \ -e 's|epicsShareExtern|DBCORE_API extern|g' \ -e 's|epicsShareDef\s*||g' \ -e 's|shareLib\.h|dbCoreAPI.h|g' \ -e 's|epicsShareAPI|epicsStdCall|g' \ -e '/#define\s*epicsExportSharedSymbols/d'
41 lines
1.3 KiB
C
41 lines
1.3 KiB
C
/*************************************************************************\
|
|
* Copyright (c) 2007 UChicago Argonne LLC, as Operator of Argonne
|
|
* National Laboratory.
|
|
* Copyright (c) 2002 The Regents of the University of California, as
|
|
* Operator of Los Alamos National Laboratory.
|
|
* SPDX-License-Identifier: EPICS
|
|
* EPICS BASE is distributed subject to a Software License Agreement found
|
|
* in file LICENSE that is included with this distribution.
|
|
\*************************************************************************/
|
|
|
|
#ifndef INC_registryCommon_H
|
|
#define INC_registryCommon_H
|
|
|
|
#include "dbStaticLib.h"
|
|
#include "devSup.h"
|
|
#include "dbJLink.h"
|
|
#include "registryRecordType.h"
|
|
#include "dbCoreAPI.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
DBCORE_API void registerRecordTypes(
|
|
DBBASE *pbase, int nRecordTypes,
|
|
const char * const *recordTypeNames, const recordTypeLocation *rtl);
|
|
DBCORE_API void registerDevices(
|
|
DBBASE *pbase, int nDevices,
|
|
const char * const *deviceSupportNames, const dset * const *devsl);
|
|
DBCORE_API void registerDrivers(
|
|
DBBASE *pbase, int nDrivers,
|
|
const char * const *driverSupportNames, struct drvet * const *drvsl);
|
|
DBCORE_API void registerJLinks(
|
|
DBBASE *pbase, int nDrivers, jlif * const *jlifsl);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* INC_registryCommon_H */
|