MCPcopy Create free account
hub / github.com/acl-dev/acl / DetourRestoreAfterWith

Function DetourRestoreAfterWith

lib_fiber/cpp/src/detours/modules.cpp:919–931  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

917}
918
919BOOL WINAPI DetourRestoreAfterWith()
920{
921 PVOID pvData;
922 DWORD cbData;
923
924 pvData = DetourFindPayloadEx(DETOUR_EXE_RESTORE_GUID, &cbData);
925
926 if (pvData != NULL && cbData != 0) {
927 return DetourRestoreAfterWithEx(pvData, cbData);
928 }
929 SetLastError(ERROR_MOD_NOT_FOUND);
930 return FALSE;
931}
932
933// End of File

Callers 1

winapi_hook_onceFunction · 0.85

Calls 2

DetourFindPayloadExFunction · 0.85
DetourRestoreAfterWithExFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…