gpt4 book ai didi

C# 等效的 HGlobal Pascal

转载 作者:行者123 更新时间:2023-11-30 20:31:32 25 4
gpt4 key购买 nike

我正在将 Pascal 接口(interface)转换为 C#。 HGlobal 数据类型的 C# 等效项是什么?

type
SomeFunction= function(var global : HGlobal) : integer; cdecl;

如何在 C# 中声明 SomeFunction

最佳答案

What is the C# equivalent of the HGlobal data type?

等效类型是IntPtr

How would SomeFunction be declared in C#?

[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate int SomeFunction(ref IntPtr global);

关于C# 等效的 HGlobal Pascal,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43094814/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com