Reorganization of interop objects

This commit is contained in:
Ryan Newington
2023-01-29 06:58:34 +11:00
parent 52e75c1748
commit 4366b24e63
16 changed files with 0 additions and 1 deletions
@@ -0,0 +1,14 @@
using System;
using System.Runtime.InteropServices;
namespace Lithnet.CredentialProvider.Interop
{
[StructLayout(LayoutKind.Sequential, Pack = 4)]
internal struct UnmanagedArray
{
public uint cElems;
[ComConversionLoss]
public IntPtr pElems;
}
}