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