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

Function DetourAreSameGuid

lib_fiber/cpp/src/detours/detours.cpp:2576–2590  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2574}
2575
2576BOOL WINAPI DetourAreSameGuid(_In_ REFGUID left, _In_ REFGUID right)
2577{
2578 return
2579 left.Data1 == right.Data1 &&
2580 left.Data2 == right.Data2 &&
2581 left.Data3 == right.Data3 &&
2582 left.Data4[0] == right.Data4[0] &&
2583 left.Data4[1] == right.Data4[1] &&
2584 left.Data4[2] == right.Data4[2] &&
2585 left.Data4[3] == right.Data4[3] &&
2586 left.Data4[4] == right.Data4[4] &&
2587 left.Data4[5] == right.Data4[5] &&
2588 left.Data4[6] == right.Data4[6] &&
2589 left.Data4[7] == right.Data4[7];
2590}
2591
2592// End of File

Callers 3

DetourFindPayloadFunction · 0.85
FindMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…