gpt4 book ai didi

c++ - 视觉口齿不清 : how to call functions in external C++ DLL

转载 作者:可可西里 更新时间:2023-11-01 17:39:31 24 4
gpt4 key购买 nike

我有一个我编写的 C++ dll( native ,而不是 .net),我想使用 Visual Lisp 的功能。任何人都可以指出如何执行此操作的示例,或者至少要阅读哪部分文档吗?

最佳答案

我通过为我的 dll 编写一个 activex/COM 包装器解决了这个问题,我认为这应该使将来更容易链接。在 the swamp 上开始一个线程从好人那里得到了一些关于如何从 Visual Lisp 调用 COM 的答案。作为记录,它看起来像这样:

//in c++... (header and IDL file also needed)
hresult timestwo(double in,double* out)
{
*out = in*2;
return S_OK;
}

;; in Lisp...
(vl-load-com)
(setq myinstance (vlax-create-object "mycomwrapperdll.mycomwrapperclass"))
(setq num 12.34)
(vlax-invoke-method myinstance 'timestwo num 'newnum)
(vlax-release-object myinstance)
;; newnum now contains 24.68

关于c++ - 视觉口齿不清 : how to call functions in external C++ DLL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8477753/

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