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/default/osdFindSymbol.c */
10 
11 #include "epicsFindSymbol.h"
12 
13 LIBCOM_API void * epicsLoadLibrary(const char *name)
14 {
15  return 0;
16 }
17 
18 LIBCOM_API const char *epicsLoadError(void)
19 {
20  return "epicsLoadLibrary not implemented";
21 }
22 
23 LIBCOM_API void * epicsStdCall epicsFindSymbol(const char *name)
24 {
25  return 0;
26 }
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