我正在将pascal接口转换为C#。什么是HGlobal
数据类型的C#等价物?
type
SomeFunction= function(var global : HGlobal) : integer; cdecl;
如何在C#中声明SomeFunction
?
答案 0 :(得分:4)
HGlobal
数据类型的C#等价物是什么?
等效类型为IntPtr
。
如何在C#中声明
SomeFunction
?
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate int SomeFunction(ref IntPtr global);