Delphi:dll中定义的访问类型用作返回类型
我正在编写一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该在单独的单元中定义 TReturnType 并在应用程序和 dll 中使用该单元,例如:
在 Dll 中:
You should define TReturnType in a separate unit and use the unit both in application and dll, ex:
In Dll: