python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
i got an error while compiling - visual studio windows (c++)
I get unresolved external symbol __imp_td_receive. I have .lib static library files in node-gyp incorrectly.
Also, I get same error except about other function (from this header).
And i have one warni...
Yaroslav
Votes: 0
Answers: 1
Use stdlib and rand with Node native module (node-gyp)
This is just an example of the problem.
Let's say I have utils.cc
#include "../headers/utils/utils.h"
double sum()
{
double result = 1 + 1;
return result;
}
double multisum(int n)
...
EuberDeveloper
Votes: 0
Answers: 1
How to use .lib files - node-gyp windows
I have .lib static library - windows. How correctly include it to node-gyp project. I did it, but I caught error LNK2001: unresolved external symbol. I think, I add library incorrectly. This libriary ...
Yaroslav
Votes: 0
Answers: 0
NodeJS module compilation
I have a node add on module using node-addon-api interface.
{
"targets": [
{
"target_name": "mod",
"sources": [
"./src/index.cpp&...
Bob
Votes: 0
Answers: 2