Mana
|
#include "common/Platform.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <dlfcn.h>
#include <unistd.h>
Namespaces | |
mana | |
Macros | |
#define | LOAD_LIBRARY(N) dlopen(N, RTLD_LAZY) |
#define | FREE_LIBRARY(M) dlclose(M) |
#define | GET_PROC_ADR(M, N) dlsym(M, N) |
#define FREE_LIBRARY | ( | M | ) | dlclose(M) |
ダイナミックライブラリを開放
#define GET_PROC_ADR | ( | M, | |
N | |||
) | dlsym(M, N) |
ダイナミックライブラリ内の関数を取得
#define LOAD_LIBRARY | ( | N | ) | dlopen(N, RTLD_LAZY) |
mana (library)
ダイナミックライブラリを読み込む