Im trying to use Haru libraries in VS 2010 Ultimate C++, but even if I run their sample code I get errors that look like this:
error LNK2019: unresolved external symbol _HPDF_Page_TextOut referenced in function _main
and many more similar errors, for every _HPDF* function that I use. I followed instructions for installation(used Visual studio command prompt and nmake commands to generate needed files). I put all *.h files C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include, all *.lib files in lib folder and *.dll in lib_dll folder. I also tried putting all those files in project folder. I included all needed files in header, and VS finds it without problems, nothing is marked as error. But when i try to build it i get this kind of errors. I tried changing runtime library in project properties but that didnt help.
What could be the problem?