STRINGTABLE DISCARDABLE
BEGIN
CEE_E_CVTRES_NOT_FOUND "Could not execute CVTRES.EXE."
- IDS_EE_EXCEPTION_FROM_HRESULT "Exception from HRESULT: "
IDS_EE_NDIRECT_UNSUPPORTED_SIG "Method's type signature is not PInvoke compatible."
IDS_EE_COM_UNSUPPORTED_SIG "Method's type signature is not Interop compatible."
IDS_EE_COM_UNSUPPORTED_TYPE "The method returned a COM Variant type that is not Interop compatible."
#define IDS_DS_DSOTHREADMODEL 0x1707
#define IDS_EE_NDIRECT_UNSUPPORTED_SIG 0x1708
-#define IDS_EE_EXCEPTION_FROM_HRESULT 0x1709
#define IDS_EE_NDIRECT_BADNATL 0x170a
#define IDS_EE_NDIRECT_LOADLIB_WIN 0x170b
#define IDS_EE_NDIRECT_GETPROCADDRESS_WIN 0x170c
result.Append(strDescr);
}
-
if (!bNoGeekStuff)
{
if (fHaveDescr)
result.Append(W(" ("));
}
- SString strExcepFromHR;
- strExcepFromHR.LoadResource(CCompRC::Error, IDS_EE_EXCEPTION_FROM_HRESULT);
- result.Append(strExcepFromHR);
result.AppendPrintf(W("0x%.8X"), hr);
if (name != NULL)
{
result.AppendPrintf(W(" (%S)"), name);
}
-
if (fHaveDescr)
{
result.Append(W(")"));
}
-
}
}