https://github.com/wzdxy/electron-ffi-demo
搭建 electron 环境
安装 node-gyp
1 | npm i -g node-gyp |
安装 fii 和 ref
- 安装 ffi 即可 , ref 会作为依赖自动安装
1
npm i fii
重新构建 ffi 和 ref
1 | # 切换到 ffi 路径 |
在 electron 中使用
1 | let ffi=require('ffi'); |
报错
Error: Dynamic Symbol Retrieval Error: Win32 error 127
1
2
3
4
5
6
7
8Error: Dynamic Symbol Retrieval Error: Win32 error 127
at DynamicLibrary.get (D:\electron-test\node_modules\ffi\lib\dynamic_library.js:112:11)
at D:\electron-test\node_modules\ffi\lib\library.js:50:19
at Array.forEach (native)
at Object.Library (D:\electron-test\node_modules\ffi\lib\library.js:47:28)
at App.createWindow (D:\electron-test\main.js:35:17)
at emitTwo (events.js:111:20)
at App.emit (events.js:194:7)解决方案 : 更换了一个 DLL , 推测是 DLL 的问题