You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to hook a function that in the C source code it is indeed a function, but when compiled it is inlined by compiler optimizations.
What are my options to hook this function?
Thanks
The text was updated successfully, but these errors were encountered:
I know this is old, but this is an easy one to respond to. You cannot detour an inlined function. At a simple level, an inlined function is pretty much just copying and pasting the code into where the function is called. Is has no signature that you can hook into.
Hello,
I want to hook a function that in the C source code it is indeed a function, but when compiled it is inlined by compiler optimizations.
What are my options to hook this function?
Thanks
The text was updated successfully, but these errors were encountered: