diff options
author | midipix <writeonce@midipix.org> | 2019-10-28 03:45:34 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-10-28 03:45:34 +0000 |
commit | 564b3cebdb1c8fffd078822e1971b9cfc8b29f23 (patch) | |
tree | 9507fb552307372c7fcafdd455138c6c19d7eee0 /include | |
parent | f706466f0a2a67d893511a21a56f80af2d2b0973 (diff) | |
download | sltdl-564b3cebdb1c8fffd078822e1971b9cfc8b29f23.tar.bz2 sltdl-564b3cebdb1c8fffd078822e1971b9cfc8b29f23.tar.xz |
core: added lt_dlinit(), lt_dlexit() [global reference-counting].
Diffstat (limited to 'include')
-rw-r--r-- | include/sltdl/sltdl.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sltdl/sltdl.h b/include/sltdl/sltdl.h index f2898e0..ea72338 100644 --- a/include/sltdl/sltdl.h +++ b/include/sltdl/sltdl.h @@ -22,6 +22,10 @@ extern "C" { typedef struct lt_modctx * lt_dlhandle; +/* global reference-counting */ +lt_api int lt_dlinit(void); +lt_api int lt_dlexit(void); + #ifdef __cplusplus } #endif |