mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 08:37:19 +08:00
21 lines
451 B
C#
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;
|
|
}
|
|
}
|
|
}
|