diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-04-12 18:20:05 +0000 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-04-12 18:20:16 +0000 |
| commit | 5ceedab2137ed65c542ca00e528fe07d121799ad (patch) | |
| tree | c5aa961838c81e2a1a356e753c22eec7bc588180 /src/include | |
| parent | 1c4f3cbf195453b214d3551d012cd17a38b8aaf3 (diff) | |
| download | box64-5ceedab2137ed65c542ca00e528fe07d121799ad.tar.gz box64-5ceedab2137ed65c542ca00e528fe07d121799ad.zip | |
Improve loading/unloading of libs, and fixed a regression when dlopen a lib after some dlclose
Diffstat (limited to 'src/include')
| -rwxr-xr-x | src/include/box64context.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/box64context.h b/src/include/box64context.h index 2424c130..2c0063e2 100755 --- a/src/include/box64context.h +++ b/src/include/box64context.h @@ -57,6 +57,7 @@ typedef struct needed_libs_s { void free_neededlib(needed_libs_t* needed); needed_libs_t* new_neededlib(int n); +needed_libs_t* copy_neededlib(needed_libs_t* needed); void add1_neededlib(needed_libs_t* needed); typedef struct base_segment_s { |