19 lines
735 B
C#
19 lines
735 B
C#
// Copyright (c) Six Labors.
|
|
// Licensed under the Six Labors Split License.
|
|
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace SixLabors.Fonts.Native {
|
|
/// <summary>
|
|
/// Options you can use to determine how CFURL functions parse a file system path name.
|
|
/// </summary>
|
|
[SuppressMessage("StyleCop.CSharp.NamingRules", "SA1300:Element should begin with upper-case letter", Justification = "Verbatim constants from the macOS SDK")]
|
|
internal enum CFURLPathStyle : long
|
|
{
|
|
/// <summary>
|
|
/// Indicates a POSIX style path name. Components are slash delimited. A leading slash indicates an absolute path; a trailing slash is not significant.
|
|
/// </summary>
|
|
kCFURLPOSIXPathStyle = 0,
|
|
}
|
|
}
|