|
Blender
V3.3
|
#include <stdio.h>#include <stdlib.h>#include <string.h>#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 | ) |
| void* BLI_dynlib_find_symbol | ( | DynamicLibrary * | lib, |
| const char * | symname | ||
| ) |
| char* BLI_dynlib_get_error_as_string | ( | DynamicLibrary * | lib | ) |
| DynamicLibrary* BLI_dynlib_open | ( | const char * | name | ) |
Definition at line 87 of file dynlib.c.
References lib, MEM_callocN, and NULL.