Gecko Javascript 到 c++
我正在使用 xulrunner 示例应用程序,并且正在尝试找出如何从 javascript 调用 C++ 代码。我用谷歌搜索了一下,我想到的最好的方法是使用 nsIDOMEventListener 接口,但不知道如何使用。
有什么想法吗?
Im using the xulrunner example application and im trying to work out how to call into c++ code from javascript. I have googled and the best i came up with was to use nsIDOMEventListener interface but have no idea how.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
什么C++代码,你的代码?这通常是通过用 C++ 创建 XPCOM 组件来完成的。
在最近的版本(我相信是 1.9.2)中,包含了 js-ctypes 库,这是一种从 DLL 中从 JS 调用 C 函数的简单方法,类似于 python 等中的 ctypes。
What C++ code, your code? That's typically done by creating an XPCOM component in C++.
In the most recent builds (1.9.2, I believe) js-ctypes library is included, which is a simple way to call C functions from JS from a DLL and is similar to ctypes in python and others.