diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-01-28 22:00:22 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-01-28 22:00:22 +0100 |
| commit | 7ebfe844892f9f4822046f98f91bfa85b3e39714 (patch) | |
| tree | ffbaea7de870b4340acb6da9970e5a047e9a14fe /src/include | |
| parent | 4e645debaadb92a8dc38e305bac2ccdee939c3ca (diff) | |
| download | box64-7ebfe844892f9f4822046f98f91bfa85b3e39714.tar.gz box64-7ebfe844892f9f4822046f98f91bfa85b3e39714.zip | |
Fixed some isse with last lib init/fini refactor (fixed ut2004, maybe pokewilds too)
Diffstat (limited to 'src/include')
| -rwxr-xr-x | src/include/library.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/library.h b/src/include/library.h index 4fdfa65a..48200a9e 100755 --- a/src/include/library.h +++ b/src/include/library.h @@ -40,6 +40,6 @@ lib_t* GetMaplib(library_t* lib); int GetElfIndex(library_t* lib); // -1 if no elf (i.e. wrapped) elfheader_t* GetElf(library_t* lib); // NULL if no elf (i.e. wrapped) void* GetHandle(library_t* lib); // NULL if not wrapped -void IncRefCount(library_t* lib); +void IncRefCount(library_t* lib, x64emu_t* emu); #endif //__LIBRARY_H_ |