Partial implementation of Thread.GetApartmentState (dotnet/corertdotnet/coreclr#5781)
authorJan Kotas <jkotas@microsoft.com>
Tue, 8 May 2018 16:52:25 +0000 (09:52 -0700)
committerJan Kotas <jkotas@microsoft.com>
Tue, 8 May 2018 22:49:52 +0000 (15:49 -0700)
Related to dotnet/coreclr#5776

Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
Commit migrated from https://github.com/dotnet/coreclr/commit/d71c6dd361bb503dc0186690ad0bc932c08e5900

src/coreclr/src/mscorlib/shared/System/HResults.cs

index ffc47d85bf79091a880f5bd05a1371e06f608f6d..c242389db3514f05abd5d21b88cc30aa95b5d28d 100644 (file)
@@ -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);
     }
 }