CPF/CPF.Mac/Mac/AppKit/NSWorkspaceIconCreationOptions.cs
2023-11-21 23:05:03 +08:00

12 lines
177 B
C#

using System;
namespace CPF.Mac.AppKit
{
[Flags]
public enum NSWorkspaceIconCreationOptions : ulong
{
NSExcludeQuickDrawElements = 0x2,
NSExclude10_4Elements = 0x4
}
}