summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2018-05-08 09:52:25 -0700
committerJan Kotas <jkotas@microsoft.com>2018-05-08 15:49:52 -0700
commitd71c6dd361bb503dc0186690ad0bc932c08e5900 (patch)
treece0923df0e2648590764eff95961bcebea1156d8
parent6f0bb947138c6f75a1721fef7f6c54d4b01282dc (diff)
downloadcoreclr-d71c6dd361bb503dc0186690ad0bc932c08e5900.tar.gz
coreclr-d71c6dd361bb503dc0186690ad0bc932c08e5900.tar.bz2
coreclr-d71c6dd361bb503dc0186690ad0bc932c08e5900.zip
Partial implementation of Thread.GetApartmentState (dotnet/corert#5781)
Related to #5776 Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
-rw-r--r--src/mscorlib/shared/System/HResults.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mscorlib/shared/System/HResults.cs b/src/mscorlib/shared/System/HResults.cs
index ffc47d85bf..c242389db3 100644
--- a/src/mscorlib/shared/System/HResults.cs
+++ b/src/mscorlib/shared/System/HResults.cs
@@ -25,6 +25,7 @@ namespace System
{
internal static partial class HResults
{
+ internal const int S_OK = unchecked((int)0x00000000);
internal const int COR_E_ABANDONEDMUTEX = unchecked((int)0x8013152D);
internal const int COR_E_AMBIGUOUSMATCH = unchecked((int)0x8000211D);
internal const int COR_E_APPDOMAINUNLOADED = unchecked((int)0x80131014);
@@ -122,5 +123,6 @@ namespace System
internal const int ERROR_MRM_MAP_NOT_FOUND = unchecked((int)0x80073B1F);
internal const int RO_E_CLOSED = unchecked((int)0x80000013);
internal const int TYPE_E_TYPEMISMATCH = unchecked((int)0x80028CA0);
+ internal const int CO_E_NOTINITIALIZED = unchecked((int)0x800401F0);
}
}