Details
Description
In file xsec/utils/winutils/XSECBinHTTPURIInputStream.cpp, the second argument to all calls to GetProcAddress() should not be wrapped in _T() because there is not a unicode version of GetProcAddress.
GetProcAddress only takes a LPCSTR (const char*) for this argument and wrapping the argument with _T() in a unicode build causes this argument to be a const wchar_t *.
Solution: remove _T() from all calls to GetProcAddress()