#include "libComAPI.h"
Go to the source code of this file.
|
LIBCOM_API int epicsStdCall | registryAdd (void *registryID, const char *name, void *data) |
|
LIBCOM_API void *epicsStdCall | registryFind (void *registryID, const char *name) |
|
LIBCOM_API int epicsStdCall | registryChange (void *registryID, const char *name, void *data) |
|
LIBCOM_API int epicsStdCall | registrySetTableSize (int size) |
|
LIBCOM_API void epicsStdCall | registryFree (void) |
|
LIBCOM_API int epicsStdCall | registryDump (void) |
|
#define DEFAULT_TABLE_SIZE 1024 |
LIBCOM_API int epicsStdCall registryAdd |
( |
void * |
registryID, |
|
|
const char * |
name, |
|
|
void * |
data |
|
) |
| |
Definition at line 45 of file registry.c.
49 if(!
gphPvt) registryInit(0);
51 if(!pentry)
return(
FALSE);
LIBCOM_API GPHENTRY *epicsStdCall gphAdd(struct gphPvt *pvt, const char *name, void *pvtid)
LIBCOM_API int epicsStdCall registryChange |
( |
void * |
registryID, |
|
|
const char * |
name, |
|
|
void * |
data |
|
) |
| |
Definition at line 56 of file registry.c.
60 if(!
gphPvt) registryInit(0);
62 if(!pentry)
return(
FALSE);
LIBCOM_API GPHENTRY *epicsStdCall gphFind(struct gphPvt *pvt, const char *name, void *pvtid)
LIBCOM_API int epicsStdCall registryDump |
( |
void |
| ) |
|
Definition at line 86 of file registry.c.
LIBCOM_API void epicsStdCall gphDump(struct gphPvt *pvt)
LIBCOM_API void* epicsStdCall registryFind |
( |
void * |
registryID, |
|
|
const char * |
name |
|
) |
| |
Definition at line 67 of file registry.c.
71 if(name==0)
return(0);
73 if(!
gphPvt) registryInit(0);
75 if(!pentry)
return(0);
LIBCOM_API GPHENTRY *epicsStdCall gphFind(struct gphPvt *pvt, const char *name, void *pvtid)
LIBCOM_API void *epicsStdCall epicsFindSymbol(const char *name)
LIBCOM_API void epicsStdCall registryFree |
( |
void |
| ) |
|
Definition at line 79 of file registry.c.
LIBCOM_API void epicsStdCall gphFreeMem(struct gphPvt *pvt)
LIBCOM_API int epicsStdCall registrySetTableSize |
( |
int |
size | ) |
|