Skip to content

Added the possibility to access pre-registers in a post-hook #384

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Feb 6, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Updated DynamicHooks
  • Loading branch information
Ayuto committed Feb 6, 2021
commit be55d6d6db2b5e04fdf99ac4bb1888dca037ba31
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ class x86MsCdecl: public ICallingConvention

private:
void* m_pReturnBuffer;
int* m_pOffsets;
};

#endif // _X86_MS_CDECL_H
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ class x86MsFastcall: public ICallingConvention

private:
void* m_pReturnBuffer;
int* m_pOffsets;
};

#endif // _X86_MS_FASTCALL_H
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ class x86MsStdcall: public ICallingConvention

private:
void* m_pReturnBuffer;
int* m_pOffsets;
};

#endif // _X86_MS_STDCALL_H
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ class x86MsThiscall: public ICallingConvention

private:
void* m_pReturnBuffer;
int* m_pOffsets;
};

#endif // _X86_MS_THISCALL_H
Binary file modified src/thirdparty/DynamicHooks/lib/DynamicHooks.lib
Binary file not shown.
Binary file modified src/thirdparty/DynamicHooks/lib/libDynamicHooks.a
Binary file not shown.