FreeBASIC  0.91.0
sys_dylib.c
Go to the documentation of this file.
1 /* Dynamic library loading functions */
2 
3 #include "../fb.h"
4 
6 {
7  return NULL;
8 }
9 
10 FBCALL void *fb_DylibSymbol( void *library, FBSTRING *symbol )
11 {
12  return NULL;
13 }
14 
15 FBCALL void *fb_DylibSymbolByOrd( void *library, short int symbol )
16 {
17  return NULL;
18 }
19 
21 {
22 }