Fix credential event callback reference lifetime

This commit is contained in:
Ryan Newington
2026-08-30 15:42:48 +10:00
parent b0a9886708
commit 7fad9cb351
18 changed files with 1105 additions and 8 deletions
@@ -0,0 +1,8 @@
using System;
using System.Runtime.InteropServices;
namespace Lithnet.CredentialProvider.UnitTests.ComInterop
{
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
internal delegate int RawQueryInterfaceDelegate(IntPtr instance, ref Guid interfaceId, out IntPtr interfacePointer);
}