/* Wrappers for non-lsb interfaces Some interfaces are not in LSB, but are declared in the headeres that are in standard. If we would like to call them, we need a separate file to include. Interfaces that require separate header are declared in header files stored in lsb/include/. The interfaces declared here are usually assigned to DEFAULT library in lsb_wrappers.c. The reason is that if developer included an LSB header into its source file, he should have linked it with the proper library. So, at the point of dlopening the wrapped interface, its library should already be loaded. All rules have exceptions, though. */ #ifndef _LSB_WRAPPERS_H #define _LSB_WRAPPERS_H 1 #ifdef __cplusplus extern "C" { #endif #include "static/lsb_pthread.h" #include "static/lsb_dlfcn.h" #include "static/lsb_freetype.h" #include "static/sys/lsb_mman.h" #include "static/alsa/lsb_rawmidi.h" #ifdef __cplusplus } #endif #endif //include sentry