spBase
Loading...
Searching...
No Matches
spLibrary.h
Go to the documentation of this file.
1
4#ifndef __SPLIBRARY_H
5#define __SPLIBRARY_H
6
7#include <sp/spDefs.h>
8
9#ifdef __cplusplus
10extern "C" {
11#endif
12
16 /*----@addtogroup spLibraryGroup----*/
17
18#if defined(MACOS)
19#pragma import on
20#endif
21
28extern void *spOpenLibrary(const char *filename);
34extern void *spGetSymbolAddress(void *handle, const char *symbol);
38extern void spCloseLibrary(void *handle);
39
40#if defined(MACOS)
41#pragma import off
42#endif
43
44 /*----@addtogroup spLibraryGroup----*/
45
46#ifdef __cplusplus
47} /* Close scope of 'extern "C"' declaration */
48#endif
49
50#endif /* __SPLIBRARY_H */
void spCloseLibrary(void *handle)
void * spOpenLibrary(const char *filename)
void * spGetSymbolAddress(void *handle, const char *symbol)