mirror of
https://github.com/vmangos/core
synced 2026-08-14 16:29:10 -04:00
7 lines
81 B
C++
7 lines
81 B
C++
|
|
#include <dlfcn.h>
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
Dl_info info;
|
||
|
|
dladdr(nullptr, &info);
|
||
|
|
}
|