From: Jan Kotas Date: Mon, 10 Apr 2017 20:57:03 +0000 (-0700) Subject: Add back UnmanagedType.LPUTF8Str (dotnet/coreclr#10859) X-Git-Tag: submit/tizen/20210909.063632~11030^2~7326 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f7720a2ac01cae6fb35ec57b63796fb174bc17d2;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Add back UnmanagedType.LPUTF8Str (dotnet/coreclr#10859) Commit migrated from https://github.com/dotnet/coreclr/commit/6252b1628317776e36b674841aaed8bffb3f88f8 --- diff --git a/src/coreclr/src/mscorlib/shared/System/Runtime/InteropServices/UnmanagedType.cs b/src/coreclr/src/mscorlib/shared/System/Runtime/InteropServices/UnmanagedType.cs index 1b625b5..4deca7f 100644 --- a/src/coreclr/src/mscorlib/shared/System/Runtime/InteropServices/UnmanagedType.cs +++ b/src/coreclr/src/mscorlib/shared/System/Runtime/InteropServices/UnmanagedType.cs @@ -43,5 +43,6 @@ namespace System.Runtime.InteropServices Error = 0x2d, IInspectable = 0x2e, HString = 0x2f, // Windows Runtime HSTRING + LPUTF8Str = 0x30, // UTF8 string } }