Files
DotNetAlpm/AlpmOld.cs
2020-04-27 12:34:56 -04:00

21 lines
511 B
C#

using System;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
using System.Runtime.ConstrainedExecution;
using System.Runtime.InteropServices;
// ReSharper disable MemberCanBePrivate.Global
// ReSharper disable UnassignedReadonlyField
// ReSharper disable UnusedMember.Global
// ReSharper disable InconsistentNaming
namespace Foodsoft.Alpm
{
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
public struct alpm_pkg_p
{
private IntPtr ptr;
}
}