diff options
author | midipix <writeonce@midipix.org> | 2019-11-19 04:19:36 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-11-20 03:00:40 +0000 |
commit | 47891ed2b208b1edd88c7a119fc061e02fe575be (patch) | |
tree | 946d964ed12227b11717f13fdaa7589f8b419a12 /include | |
parent | c42bd5f05e744e0d863d0b10552d490377e06c63 (diff) | |
download | sltdl-47891ed2b208b1edd88c7a119fc061e02fe575be.tar.bz2 sltdl-47891ed2b208b1edd88c7a119fc061e02fe575be.tar.xz |
search path: lt_dl{add|insert|set|get}searchdir(): initial implementation.
Diffstat (limited to 'include')
-rw-r--r-- | include/sltdl/sltdl.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/sltdl/sltdl.h b/include/sltdl/sltdl.h index ea72338..a65fe8b 100644 --- a/include/sltdl/sltdl.h +++ b/include/sltdl/sltdl.h @@ -26,6 +26,12 @@ typedef struct lt_modctx * lt_dlhandle; lt_api int lt_dlinit(void); lt_api int lt_dlexit(void); +/* library search path */ +lt_api int lt_dladdsearchdir(const char *); +lt_api int lt_dlinsertsearchdir(const char *, const char *); +lt_api int lt_dlsetsearchpath(const char *); +lt_api const char * lt_dlgetsearchpath(void); + #ifdef __cplusplus } #endif |