Hi, im trying to use some libraries for ip camera control but it fails at compilation...

I include for example this file
Qt Code:
  1. #include <CyDeviceFinder.h>
To copy to clipboard, switch view to plain text mode 

and i include at the .pro:
Qt Code:
  1. INCLUDEPATH += "C:\Archivos de programa\JAI A-S\Cam2Net\Includes"
  2. LIBS += -L"C:\Archivos de programa\JAI A-S\Cam2Net\Binaries" \
  3. -lCyCamLib
To copy to clipboard, switch view to plain text mode 

and i get this error:
Qt Code:
  1. function 'CyResult CyParameterRepository::SetParameterByIndex(long unsigned int,char,bool)' definition is marked dllimport
  2. .
  3. .
  4. .
  5. .
  6. with many functions
To copy to clipboard, switch view to plain text mode 

i've tried to remove LIBS...

Qt Code:
  1. INCLUDEPATH += "C:\Archivos de programa\JAI A-S\Cam2Net\Includes"
To copy to clipboard, switch view to plain text mode 

but it still fails...

it also throws some warnings:

Qt Code:
  1. ignoring #pragma warning
To copy to clipboard, switch view to plain text mode 

I've googled this problem but i havent found any solution, in some threads said that the cpp compiler wasnt correct, others to include a #define CLASSNAME_EXPORTS .... but...

Can anybody help me?