| 2201 | } |
| 2202 | |
| 2203 | BOOL 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. |
nothing calls this directly
no test coverage detected
searching dependent graphs…