diff options
-rw-r--r-- | include/sltdl/sltdl.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/sltdl/sltdl.h b/include/sltdl/sltdl.h index 640d3d9..3039529 100644 --- a/include/sltdl/sltdl.h +++ b/include/sltdl/sltdl.h @@ -29,6 +29,14 @@ extern "C" { /* default dlsym vtable, see also: slibtool -dlpreopen self */ #define lt_preloaded_symbols lt__PROGRAM__LTX_preloaded_symbols +/* loader priority */ +enum lt_dlpriority { + LT_DLLOADER_PREPEND, + LT_DLLOADER_APPEND, +}; + +typedef enum lt_dlpriority lt_dlloader_priority; + /* binary-compatible type definitions */ typedef void * lt_ptr; |