napi\_module为结构体,具体定义如下:typedef struct napi_module { int nm_version; // nm版本号,默认值为1 unsigned int nm_flags; // nm标识符 const char* nm_filename; // 文件名,暂不关注,使用默认值即可 napi_addon_register_func nm_register_func; // 指定nm的入口函数 const char* nm_modname; // 指定TS页面导入的模块名 void* nm_priv; // 暂不关注,使用默认即可 void* reserved[4]; // 暂不关注,使用默认值即可 } napi_module;模块加载流程简介:参考链接模块加载流程
napi\_module为结构体,具体定义如下:
模块加载流程简介:
参考链接
模块加载流程