| 2048 | } |
| 2049 | |
| 2050 | BOOL WINAPI DetourBinaryWrite(_In_ PDETOUR_BINARY pdi, |
| 2051 | _In_ HANDLE hFile) |
| 2052 | { |
| 2053 | Detour::CImage *pImage = Detour::CImage::IsValid(pdi); |
| 2054 | if (pImage == NULL) { |
| 2055 | return FALSE; |
| 2056 | } |
| 2057 | |
| 2058 | return pImage->Write(hFile); |
| 2059 | } |
| 2060 | |
| 2061 | _Writable_bytes_(*pcbData) |
| 2062 | _Readable_bytes_(*pcbData) |
nothing calls this directly
no test coverage detected
searching dependent graphs…