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

Function DetourBinaryClose

lib_fiber/cpp/src/detours/image.cpp:2203–2215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2201}
2202
2203BOOL WINAPI DetourBinaryClose(_In_ PDETOUR_BINARY pBinary)
2204{
2205 Detour::CImage *pImage = Detour::CImage::IsValid(pBinary);
2206 if (pImage == NULL) {
2207 return FALSE;
2208 }
2209
2210 BOOL bSuccess = pImage->Close();
2211 delete pImage;
2212 pImage = NULL;
2213
2214 return bSuccess;
2215}
2216
2217//
2218///////////////////////////////////////////////////////////////// End of File.

Callers

nothing calls this directly

Calls 1

CloseMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…