c++ - LNK2019 error while using a library function from inside a class -


I have a VS 2013 project with a different file in class, where I want to use BeaEngine to isolate the binary I am I added all necessary files (BEEZH and BAEGN.Lib) to the project and linker to Set to include. When I call the forgotten function from inside the Main Function () function, my project is OK, but when I try to call it one of my class member functions, I get the following error: "__imp__Disasm" symbol "__imp__Disasm" in the pane Private: Zero __thiscall BinaryBlob :: callScan (unsigned int, unsigned int) "(? CallScan @ BinaryBlob @@AAEXII @ Z)" Error in LNK2019: pane "

It seems to me that Linker Desmesh Funk Can not find the implementation of the Shan If I comment on the following line, then it will be compiled without any errors.

  len = vism (and (it->; disasm));   

My included include are:

  #include "stdafx.h" #include "BinaryBlob.h" #define BEA_ENGINE_STATIC / * Specify the use of BeaEngine * / #define A stable version of BEA_USE_STDCALL / * specifies the use of a stdcall version of BeaEngine * / #include "BeaEngine.h"   

Do I do anything other than Need BeaEngine.h?

Any help would really appreciate it!

What is it that says compiler can see .h file (it recognizes .h file name ) But is not connected to the library. I am using VC10, but you need to do something like

property page, normal, then add directory of Libil under additional library directories

then

Input, additional dependencies, the library retains the name of mylib.lib

If it does. If you have Dll then either put it with your program .exe or add the path of .dll to your system PATH

Actually it's like a lawn mover: if it's getting wind, gas and spark If it is, then it will move.

  air = .h file = gas Dll (or other things on Linux) Spark = Your program is calling Lib    

Comments

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -