CPF/CPF.Mac/Mac/Foundation/NSMachPortRights.cs

13 lines
155 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
using System;
namespace CPF.Mac.Foundation
{
[Flags]
public enum NSMachPortRights : ulong
{
None = 0x0,
SendRight = 0x1,
ReceiveRight = 0x2
}
}