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;
|
|
}
|
|
}
|