MangoHud/src/real_dlsym.h

12 lines
323 B
C
Raw Normal View History

2020-03-10 05:19:18 +00:00
#pragma once
#ifndef MANGOHUD_REAL_DLSYM_H
#define MANGOHUD_REAL_DLSYM_H
2020-03-10 05:19:18 +00:00
#define EXPORT_C_(type) extern "C" __attribute__((__visibility__("default"))) type
void *real_dlopen(const char *filename, int flag);
2020-03-10 05:19:18 +00:00
void* real_dlsym( void*, const char* );
void* get_proc_address(const char* name);
#endif //MANGOHUD_REAL_DLSYM_H