如何在 Electron App 中调用本地 .dll 文件

How to call local .dll files in Electron App(如何在 Electron App 中调用本地 .dll 文件)
本文介绍了如何在 Electron App 中调用本地 .dll 文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我遇到了如何将示例 .dll 文件调用到我的 Electron 应用程序中的问题.我的文件夹中有示例 .dll 文件,问题是如何访问我的 sample.dll 文件以及如何调用我的 sample.dll 函数并获得结果.任何教程或步骤请遵循示例代码开始

i have an issue how to call sample .dll files into my Electron App. I have sample .dll files in my folder, the thing is how to access my sample.dll file and how to call my sample.dll function and gets results. Any tutorials or steps to follow please sample code to start

推荐答案

在 Electron 中调用 .dll 与在普通 NodeJS 中调用一个没有什么不同,这意味着你有两个选择,node-ffi 或 本机节点插件,它与您的 .dll 链接并公开 JavaScript API.如果你决定创建一个原生 Node 插件,你需要 构建它目标电子.

Calling into a .dll in Electron is no different to calling into one in plain NodeJS, which means you have two options, node-ffi or a native Node addon that links with your .dll and exposes a JavaScript API. If you decide to create a native Node addon you will need to build it to target Electron.

以下是一些涵盖这些主题的链接:

Here are some links that cover these topics:

  • node-ffi vs. 访问节点扩展现有的 C++ 功能
  • 从Node.js调用C++库(Node插件/node-ffi)
  • https://github.com/node-ffi/node-ffi/wiki/Node-FFI-教程
  • https://blog.scottfrees.com/calling-native-c-dlls-from-a-node-js-web-app
  • http://blog.scottfrees.com/building-an-asynchronous-c-addon-for-node-js-using-nan

这篇关于如何在 Electron App 中调用本地 .dll 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)