summaryrefslogtreecommitdiff
path: root/src/dlls
diff options
context:
space:
mode:
authorJeremy Koritzinsky <jekoritz@microsoft.com>2019-05-06 13:45:52 -0700
committerGitHub <noreply@github.com>2019-05-06 13:45:52 -0700
commit796776c2c340947fd092ccb9ddab579c41c0fd77 (patch)
treeb09d8a4b301184845f5301809ce23778e257a30e /src/dlls
parent099177b0899156a4e8a352083a273805240c0ccd (diff)
downloadcoreclr-796776c2c340947fd092ccb9ddab579c41c0fd77.tar.gz
coreclr-796776c2c340947fd092ccb9ddab579c41c0fd77.tar.bz2
coreclr-796776c2c340947fd092ccb9ddab579c41c0fd77.zip
Handle E_NOTIMPL return from CoInitializeEx. (#24387)
* Handle E_NOTIMPL return from CoInitializeEx. * Remove unneeded STA attributes.
Diffstat (limited to 'src/dlls')
-rw-r--r--src/dlls/mscorrc/mscorrc.rc1
-rw-r--r--src/dlls/mscorrc/resource.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/dlls/mscorrc/mscorrc.rc b/src/dlls/mscorrc/mscorrc.rc
index 3576b48b04..f11d48ad9b 100644
--- a/src/dlls/mscorrc/mscorrc.rc
+++ b/src/dlls/mscorrc/mscorrc.rc
@@ -496,6 +496,7 @@ BEGIN
STRINGTABLE DISCARDABLE
BEGIN
CEE_E_CVTRES_NOT_FOUND "Could not execute CVTRES.EXE."
+ IDS_EE_THREAD_APARTMENT_NOT_SUPPORTED "The system does not support the %1 thread apartment."
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."
diff --git a/src/dlls/mscorrc/resource.h b/src/dlls/mscorrc/resource.h
index 01982d324c..3d92d424b8 100644
--- a/src/dlls/mscorrc/resource.h
+++ b/src/dlls/mscorrc/resource.h
@@ -723,3 +723,5 @@
#define IDS_EE_BADMARSHAL_COPYCTORRESTRICTION 0x2647
#define IDS_EE_BADMARSHAL_WINRT_COPYCTOR 0x2648
#define IDS_EE_BADMARSHAL_DELEGATE_TLB_INTERFACE 0x2649
+#define IDS_EE_THREAD_APARTMENT_NOT_SUPPORTED 0x264A
+ \ No newline at end of file