File: src\libraries\Common\src\Interop\Interop.ResultCode.cs
Web Access
Project: src\src\coreclr\System.Private.CoreLib\System.Private.CoreLib.csproj (System.Private.CoreLib)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
internal static partial class Interop
{
    internal static partial class Globalization
    {
        // needs to be kept in sync with ResultCode in System.Globalization.Native
        internal enum ResultCode
        {
            Success = 0,
            UnknownError = 1,
            InsufficientBuffer = 2,
            OutOfMemory = 3,
            InvalidCodePoint = 4,
        }
    }
}