9 lines
244 B
C#
9 lines
244 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Lithnet.CredentialProvider.UnitTests.ComInterop
|
|
{
|
|
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
|
|
internal delegate int CredentialUnAdviseDelegate(IntPtr instance);
|
|
}
|