在 vb6 中,如何从 C dll 中检索 char* 参数?
我正在从 VB6 应用程序调用 C dll。该 dll 具有如下函数调用签名。
void WINAPI geterrstr(char* foo);
其中 foo 是必须返回的字符串。
在我的 VB6 应用程序中,我尝试使用以下语法调用我的 dll,但它返回一个空字符串。
Declare Sub geterrstr Lib "technopnp.dll" (ByRef lpbuffer As String)
有什么想法吗?
I am calling a C dll from my VB6 application. The dll has a function call signature as follows.
void WINAPI geterrstr(char* foo);
where foo is a string that has to be returned.
In my VB6 application, I have tried calling my dll by using the following syntax, but it returns an empty string.
Declare Sub geterrstr Lib "technopnp.dll" (ByRef lpbuffer As String)
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你应该能够;
n
需要是适当的缓冲区大小,太短会崩溃。You should be able to;
n
needs to be an appropriate buffer size, too short and it will crash.