This is Unofficial EPICS BASE Doxygen Site
registryRecordType.h File Reference
#include "recSup.h"
#include "shareLib.h"
+ Include dependency graph for registryRecordType.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  recordTypeLocation
 

Typedefs

typedef int(* computeSizeOffset) (struct dbRecordType *pdbRecordType)
 
typedef struct recordTypeLocation recordTypeLocation
 

Functions

epicsShareFunc int registryRecordTypeAdd (const char *name, const recordTypeLocation *prtl)
 
epicsShareFunc recordTypeLocationregistryRecordTypeFind (const char *name)
 
int registerRecordDeviceDriver (struct dbBase *pdbbase)
 

Typedef Documentation

typedef int(* computeSizeOffset) (struct dbRecordType *pdbRecordType)

Definition at line 23 of file registryRecordType.h.

Function Documentation

int registerRecordDeviceDriver ( struct dbBase pdbbase)
epicsShareFunc int registryRecordTypeAdd ( const char *  name,
const recordTypeLocation prtl 
)

Definition at line 20 of file registryRecordType.c.

22 {
23  return registryAdd(registryID, name, (void *)prtl);
24 }
LIBCOM_API int epicsStdCall registryAdd(void *registryID, const char *name, void *data)
Definition: registry.c:45
epicsShareFunc recordTypeLocation* registryRecordTypeFind ( const char *  name)

Definition at line 26 of file registryRecordType.c.

28 {
29  return registryFind(registryID, name);
30 }
LIBCOM_API void *epicsStdCall registryFind(void *registryID, const char *name)
Definition: registry.c:67