mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
15 lines
227 B
C#
15 lines
227 B
C#
using CPF.Mac.ObjCRuntime;
|
|
using System;
|
|
|
|
namespace CPF.Mac.Foundation
|
|
{
|
|
[Since(4, 0)]
|
|
[Flags]
|
|
public enum NSVolumeEnumerationOptions : ulong
|
|
{
|
|
None = 0x0,
|
|
SkipHiddenVolumes = 0x2,
|
|
ProduceFileReferenceUrls = 0x4
|
|
}
|
|
}
|