Saravanan I M
Saravanan I M

Reputation: 1155

Unresolved external symbol error

I am getting the following error in my VC++ COM project. What is the problem in linking the lib files here?

Error 4 error LNK2019: unresolved external symbol _BVUOpen@8 referenced in function "unsigned int __stdcall AFunc(void *)" (?AFunc@@YGIPAX@Z) CBillAcceptor.obj BillAcceptorCOM

Upvotes: 0

Views: 397

Answers (2)

Matthieu
Matthieu

Reputation: 2761

Here are the explanation of the LNK2019 error : MSDN.

Look for a problem of definition about BVUOPen symbol ! The problem si inside the method AFunc Maybe, you haven't declare it correctly or haven't link the library or haven't export the symbol...

Upvotes: 1

1800 INFORMATION
1800 INFORMATION

Reputation: 135245

Probably, you need to link against some external library that contains the object code for the BVUOpen function. The name of that library is not obvious from your error message, but it should be possible to work out from the documentation you are coding from.

Upvotes: 0

Related Questions