changed it so that there re not two functions with the same name

inside and outside of base (generated in the application).
This commit is contained in:
Jeff Hill
2000-05-04 01:24:01 +00:00
parent 0f67cc3054
commit dca0b0d9c0
2 changed files with 4 additions and 3 deletions

View File

@@ -15,7 +15,7 @@
#include "registryDeviceSupport.h"
#include "registryDriverSupport.h"
int epicsShareAPI registerRecordDeviceDriver(struct dbBase *pdbbase)
int epicsShareAPI registerRecordDeviceDriverBase(struct dbBase *pdbbase)
{
dbRecordType *pdbRecordType;
recordTypeLocation *precordTypeLocation;

View File

@@ -23,10 +23,11 @@ epicsShareFunc int epicsShareAPI registryRecordTypeAdd(
const char *name,recordTypeLocation *prtl);
epicsShareFunc recordTypeLocation * epicsShareAPI registryRecordTypeFind(
const char *name);
epicsShareFunc int epicsShareAPI registerRecordDeviceDriverBase(
struct dbBase *pdbbase);
/* The following function is generated by registerRecordDeviceDriver/pl */
epicsShareFunc int epicsShareAPI registerRecordDeviceDriver(
struct dbBase *pdbbase);
int registerRecordDeviceDriver(struct dbBase *pdbbase);
#ifdef __cplusplus
}