You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I write a native C++ module(name: MyCppModule) by node-gyp,it work ok,but now I have another DLL, so I call LoadLibrary(“myDLL.dll”) in “MyCppModule”,but it not work, it return NULL, GetLastError return 126, means not found the module, if I call LoadLibrary(“myDLL.dll”) in other program, it work, need help
Hi @zengdongbao,
could you post your binding.gyp file? Maybe you only need to set the shared libraries that you want use on your binding.gyp like reported on the following example:
I write a native C++ module(name: MyCppModule) by node-gyp,it work ok,but now I have another DLL, so I call LoadLibrary(“myDLL.dll”) in “MyCppModule”,but it not work, it return NULL, GetLastError return 126, means not found the module, if I call LoadLibrary(“myDLL.dll”) in other program, it work, need help
same as microsoft/nodejs-guidelines#92
The text was updated successfully, but these errors were encountered: