diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-04-09 18:19:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-09 18:19:42 +0200 |
| commit | 0a37f1cc30f9d31b1cc4b3cae353d134a66a1ffc (patch) | |
| tree | acea39fed7c69642c71a6ba0db7928d4c31044f5 /src/include/library.h | |
| parent | 0e0f1e203747a3b7a625d1d57d47036c796bc7f7 (diff) | |
| parent | 70018a774bf7411ef7550aa4fb3eb153d17dcfd6 (diff) | |
| download | box64-0a37f1cc30f9d31b1cc4b3cae353d134a66a1ffc.tar.gz box64-0a37f1cc30f9d31b1cc4b3cae353d134a66a1ffc.zip | |
Merge pull request #3 from rajdakin/exitFix
box64 exit fix
Diffstat (limited to 'src/include/library.h')
| -rwxr-xr-x | src/include/library.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/library.h b/src/include/library.h index 9af07c34..26f395dc 100755 --- a/src/include/library.h +++ b/src/include/library.h @@ -9,7 +9,7 @@ typedef struct box64context_s box64context_t; typedef struct x64emu_s x64emu_t; typedef struct needed_libs_s needed_libs_t; -library_t *NewLibrary(const char* path, box64context_t* box86); +library_t *NewLibrary(const char* path, box64context_t* box64); int AddSymbolsLibrary(lib_t* maplib, library_t* lib, x64emu_t* emu); int FinalizeLibrary(library_t* lib, lib_t* local_maplib, x64emu_t* emu); int ReloadLibrary(library_t* lib, x64emu_t* emu); @@ -33,4 +33,4 @@ lib_t* GetMaplib(library_t* lib); int GetElfIndex(library_t* lib); // -1 if no elf (i.e. native) void* GetHandle(library_t* lib); // NULL if not native -#endif //__LIBRARY_H_ \ No newline at end of file +#endif //__LIBRARY_H_ |