当前位置:网站首页>electron之坑addon
electron之坑addon
2022-07-01 01:08:00 【骇客之技术】
dll 错误
Error: A dynamic link library (DLL) initialization routine failed
node.exe 未延迟加载
需要配置下面俩项
#ifdef _MSC_VER
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#include <windows.h>
#include <delayimp.h>
#include <string.h>
static FARPROC WINAPI load_exe_hook(unsigned int event, DelayLoadInfo *info) {
HMODULE m;
if (event != dliNotePreLoadLibrary)
return NULL;
if (_stricmp(info->szDll, "NODE.EXE") != 0)
return NULL;
m = GetModuleHandle(NULL);
return (FARPROC)m;
}
decltype(__pfnDliNotifyHook2) __pfnDliNotifyHook2 = load_exe_hook;
#endif

node.lib 同函数名依赖顺序问题
查看node.lib导出函数,主要有
uv
openssl
v8
zlib
dumpbin /LINKERMEMBER node.lib >nodelib.txt
修改node.lib为最后依赖
node gyp找不到vs
2017版本后依赖powershell脚本
$ExecutionContext.SessionState.LanguageMode 看看是不是为 FullLanguage
__PSLockdownPolicy 系统环境变量 为 1,如果为4为 ConstrainedLanguage。
另外说明我设置 npm config set msvs_version 2019 无效
二进制文件坑
git 默认换行符自动转换,导致二进制文件失效
关闭转换
git config --global core.autocrlf false
依赖非n-api库比如openssl,uv
cd /path-to-module/
HOME=~/.electron-gyp node-gyp rebuild --target=1.2.3 --arch=x64 --dist-url=https://electronjs.org/headers
边栏推荐
- 【office办公-pdf篇】pdf合并与拆分让我们摆脱付费软件的功能限制好不好
- Matlab farthest point sampling (FPS improved version)
- QT5-布局在创作中的理解应用
- 【模拟】922. Sort Array By Parity II
- 微研所,微生物检验中常用的生化反应
- 流批一体在京东的探索与实践
- Thinking about business and investment
- 3dsmax插件开发遍历节点对象和Object获取及INode变换矩阵说明
- What will Web3 bring in the future?
- Understanding and application of Qt5 layout in creation
猜你喜欢

一站式洞察行业热点,飞瓜数据B站新功能「流量大盘」上线!

关于白盒测试,这些技巧你得游刃有余~

qt5-MVC:数据可视化的层次揭秘

45 year old programmer tells you: why do programmers want to change jobs? It's too true

3500字归纳总结:一名合格的软件测试工程师需要掌握的技能大全

Gin configuration file

Sun Yuchen told Swiss media Bilan that the bear market will not last long

KS009基于SSH实现宠物管理系统

工作6年,来盘点一下职场人混迹职场的黄金法则

数据探索电商平台用户行为流失分析
随机推荐
Open3d point cloud bounding box
qt5-MVC:数据可视化的层次揭秘
Applet Custom Grid
短视频平台开发,依靠DrawerLayout实现侧滑菜单效果
【agora】用户管理
mysql插入\更新前+判断条件
MFC TCP通信服务端客户端Demo备忘vs2019
laravel 事件 & 监听
45岁程序员告诉你:程序员为什么要跳槽,太真实...
3dsmax plug-in development traversal node object and object acquisition and inode transformation matrix description
Log logrus third party library usage
【模拟】922. Sort Array By Parity II
C# 自定义并动态切换光标
OCR的一些项目
7-2 拼题A打卡奖励 dp
laravel Carbon 时间处理类使用
关于白盒测试,这些技巧你得游刃有余~
【office办公-pdf篇】pdf合并与拆分让我们摆脱付费软件的功能限制好不好
QT5-布局在创作中的理解应用
Basic knowledge II - Basic definitions related to sta