repo.or.cz
/
openal-soft.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Check the propertyset when matching the propertyid
[openal-soft.git]
/
common
/
dynload.h
blob
bd9e86f7907fb033b06ec3a7a69729ce9a6d0bc5
1
#ifndef AL_DYNLOAD_H
2
#define AL_DYNLOAD_H
3
4
#if defined(_WIN32) || defined(HAVE_DLFCN_H)
5
6
#define HAVE_DYNLOAD
7
8
void
*
LoadLib
(
const char
*
name
);
9
void
CloseLib
(
void
*
handle
);
10
void
*
GetSymbol
(
void
*
handle
,
const char
*
name
);
11
12
#endif
13
14
#endif
/* AL_DYNLOAD_H */