Changes for win33 build.
This commit is contained in:
@@ -25,7 +25,7 @@ LIBSRCS += registryDeviceSupport.c
|
||||
LIBSRCS += registryDriverSupport.c
|
||||
|
||||
LIBRARY_IOC = registryIoc
|
||||
registryIoc_DLL_LIBS = dbStaticIoc Com
|
||||
registryIoc_DLL_LIBS = Com
|
||||
|
||||
OBJS_IOC = registerRecordDeviceDriver
|
||||
|
||||
|
||||
@@ -11,14 +11,14 @@ of this distribution.
|
||||
#include <stdlib.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include "registry.h"
|
||||
#include "dbBase.h"
|
||||
#include "devSup.h"
|
||||
#define epicsExportSharedSymbols
|
||||
#include "registryDeviceSupport.h"
|
||||
#include "registry.h"
|
||||
|
||||
const char *deviceSupport = "device support";
|
||||
static void *registryID = &deviceSupport;
|
||||
static void *registryID = (void *)&deviceSupport;
|
||||
|
||||
|
||||
epicsShareFunc int epicsShareAPI registryDeviceSupportAdd(
|
||||
|
||||
@@ -11,14 +11,14 @@ of this distribution.
|
||||
#include <stdlib.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include "registry.h"
|
||||
#include "dbBase.h"
|
||||
#include "drvSup.h"
|
||||
#define epicsExportSharedSymbols
|
||||
#include "registryDriverSupport.h"
|
||||
#include "registry.h"
|
||||
|
||||
const char *driverSupport = "driver support";
|
||||
static void *registryID = &driverSupport;
|
||||
static void *registryID = (void *)&driverSupport;
|
||||
|
||||
|
||||
epicsShareFunc int epicsShareAPI registryDriverSupportAdd(
|
||||
|
||||
@@ -11,13 +11,13 @@ of this distribution.
|
||||
#include <stdlib.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include "registry.h"
|
||||
#include "dbBase.h"
|
||||
#define epicsExportSharedSymbols
|
||||
#include "registryRecordType.h"
|
||||
#include "registry.h"
|
||||
|
||||
const char *recordType = "record type";
|
||||
static void *registryID = &recordType;
|
||||
static void *registryID = (void *)&recordType;
|
||||
|
||||
|
||||
epicsShareFunc int epicsShareAPI registryRecordTypeAdd(
|
||||
|
||||
@@ -25,7 +25,7 @@ epicsShareFunc recordTypeLocation * epicsShareAPI registryRecordTypeFind(
|
||||
const char *name);
|
||||
|
||||
/* The following function is generated by registerRecordDeviceDriver/pl */
|
||||
epicsShareFunc int epicsShareAPI registerRecordDeviceDriver(
|
||||
int registerRecordDeviceDriver(
|
||||
struct dbBase *pdbbase);
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
Reference in New Issue
Block a user