CPF/CPF.Windows/MicroCom/LocalInterop.cs
2023-11-21 23:05:03 +08:00

21 lines
451 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CPF.Windows.MicroCom
{
unsafe class LocalInterop
{
public static unsafe void CalliStdCallvoid(void* thisObject, void* methodPtr)
{
throw null;
}
public static unsafe int CalliStdCallint(void* thisObject, Guid* guid, IntPtr* ppv, void* methodPtr)
{
throw null;
}
}
}