| 2857 | } |
| 2858 | |
| 2859 | HMODULE WINAPI shCustomLoadLibraryExW(LPCWSTR lpLibFileName, HANDLE hFile, DWORD dwFlags) |
| 2860 | { |
| 2861 | auto raddr = _ReturnAddress(); |
| 2862 | auto r = GetFilePathForOverload(lpLibFileName, isRecursive(raddr)); |
| 2863 | return mhLoadLibraryExW->get_original<decltype(LoadLibraryExW)>()(value_orW(r, lpLibFileName), hFile, dwFlags); |
| 2864 | } |
| 2865 | |
| 2866 | HANDLE WINAPI shCustomCreateFileA(LPCSTR lpFileName, DWORD dwAccess, DWORD dwSharing, LPSECURITY_ATTRIBUTES saAttributes, DWORD dwCreation, DWORD dwAttributes, HANDLE hTemplate) |
| 2867 | { |
nothing calls this directly
no test coverage detected