mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-18 09:44:52 +08:00
16 lines
181 B
C#
16 lines
181 B
C#
using System;
|
|
|
|
namespace CPF.Mac.Security
|
|
{
|
|
internal struct AuthorizationItem
|
|
{
|
|
public IntPtr name;
|
|
|
|
public IntPtr valueLen;
|
|
|
|
public IntPtr value;
|
|
|
|
public int flags;
|
|
}
|
|
}
|