Delphi:dll中定义的访问类型用作返回类型

发布于 2024-09-15 03:31:31 字数 226 浏览 2 评论 0原文

我正在编写一个 DLL,其中包含一个函数。该函数的返回值是在 DLL 内的代码中定义的数据类型。在应用程序方面,我将该函数作为对 DLL

Function CreateMyObject( MyString : String ) : TReturnType; 的外部调用来引用。外部“MyDLL.dll”

如何从 DLL 访问 TReturn 类型,以便应用程序知道它应该是什么类型。

谢谢

I am writing a DLL with one function in it. This functions return value is a datatype defined in code within the DLL. On the applications side where I reference the function as an external call to a DLL

Function CreateMyObject( MyString : String ) : TReturnType; external 'MyDLL.dll'

How do I get access from the DLL to the TReturn type so the application will know what type it is supposed to be.

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哭泣的笑容 2024-09-22 03:31:31

您应该在单独的单元中定义 TReturnType 并在应用程序和 dll 中使用该单元,例如:

unit SharedUnit;

interface

type
  TReturnType = ...

implementation

end.

在 Dll 中:

library MyDll;

uses
  SharedUnit;

function MyFunc: TReturnType;
begin
// ...
end;

exports MyFunc;

{$R *.res}

begin
end.

You should define TReturnType in a separate unit and use the unit both in application and dll, ex:

unit SharedUnit;

interface

type
  TReturnType = ...

implementation

end.

In Dll:

library MyDll;

uses
  SharedUnit;

function MyFunc: TReturnType;
begin
// ...
end;

exports MyFunc;

{$R *.res}

begin
end.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文