|
Blender V4.3
|
#include <cstdio>#include <cstdlib>#include <cstring>#include "MEM_guardedalloc.h"#include "BLI_dynlib.h"#include <dlfcn.h>Go to the source code of this file.
Classes | |
| struct | DynamicLibrary |
Functions | |
| DynamicLibrary * | BLI_dynlib_open (const char *name) |
| void * | BLI_dynlib_find_symbol (DynamicLibrary *lib, const char *symname) |
| char * | BLI_dynlib_get_error_as_string (DynamicLibrary *lib) |
| void | BLI_dynlib_close (DynamicLibrary *lib) |
| void BLI_dynlib_close | ( | DynamicLibrary * | lib | ) |
Definition at line 115 of file dynlib.cc.
References DynamicLibrary::handle, lib, and MEM_freeN().
| void * BLI_dynlib_find_symbol | ( | DynamicLibrary * | lib, |
| const char * | symname ) |
Definition at line 104 of file dynlib.cc.
References DynamicLibrary::handle, and lib.
| char * BLI_dynlib_get_error_as_string | ( | DynamicLibrary * | lib | ) |
| DynamicLibrary * BLI_dynlib_open | ( | const char * | name | ) |
Definition at line 89 of file dynlib.cc.
References DynamicLibrary::handle, and lib.