mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 15:01:28 +12:00
Syscall analysis implemented
This commit is contained in:
parent
63e690ca11
commit
9db7de29fb
16 changed files with 234 additions and 155 deletions
|
@ -42,7 +42,7 @@ namespace utils
|
|||
void *dynamic_library::get_impl(const std::string &name) const
|
||||
{
|
||||
#ifdef _WIN32
|
||||
return GetProcAddress((HMODULE)m_handle, name.c_str());
|
||||
return (void*)GetProcAddress((HMODULE)m_handle, name.c_str());
|
||||
#else
|
||||
return dlsym(m_handle, (char *)name.c_str());
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue