CRuntimeFunctionHooker icon indicating copy to clipboard operation
CRuntimeFunctionHooker copied to clipboard

An example of hooking C functions at runtime

Results 1 CRuntimeFunctionHooker issues
Sort by recently updated
recently updated
newest added

``` int hookTargetFunction() { printf("Calling original function!\n"); return 5; } int hookReplacementFunction() { printf("Calling replacement function!\n"); // HOW do I call hookTargetFunction ? return 3; } ```