9 lines
294 B
C#
9 lines
294 B
C#
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);
|
|
}
|