This is Unofficial EPICS BASE Doxygen Site
osdFindSymbol.c
Go to the documentation of this file.
1 /*************************************************************************\
2 * Copyright (c) 2009 UChicago Argonne LLC, as Operator of Argonne
3 * National Laboratory.
4 * Copyright (c) 2002 The Regents of the University of California, as
5 * Operator of Los Alamos National Laboratory.
6 * EPICS BASE is distributed subject to a Software License Agreement found
7 * in file LICENSE that is included with this distribution.
8 \*************************************************************************/
9 /* osi/os/RTEMS/osdFindSymbol.c */
10 
11 /* GESYS could support this, but must use compile-time detection
12  * as the code must build for non-GESYS systems as well.
13  */
14 
15 #include "epicsFindSymbol.h"
16 
17 LIBCOM_API void * epicsLoadLibrary(const char *name)
18 {
19  return 0;
20 }
21 
22 LIBCOM_API const char *epicsLoadError(void)
23 {
24  return "epicsLoadLibrary not implemented";
25 }
26 
27 LIBCOM_API void * epicsStdCall epicsFindSymbol(const char *name)
28 {
29  return 0;
30 }
LIBCOM_API void * epicsLoadLibrary(const char *name)
Definition: osdFindSymbol.c:13
LIBCOM_API void *epicsStdCall epicsFindSymbol(const char *name)
Definition: osdFindSymbol.c:23
LIBCOM_API const char * epicsLoadError(void)
Definition: osdFindSymbol.c:18