I have a generic Win32 application that I'm trying to embed (with tweaks) into a QT application.
Specifically I need to incorporate the Cypress USB Library CyAPI library but get linkage errors such as:
camera.obj:-1: error: LNK2019: unresolved external symbol "public: bool __thiscall CCyUSBEndPoint::XferData(unsigned char *,long &,class CCyIsoPktInfo *)" (?XferData@CCyUSBEndPoint@@QAE_NPAEAAJPAVCCyIsoPktInfo@@@Z) referenced in function "public: bool __thiscall Camera::SendDataToRegister(int,int)" (?SendDataToRegister@Camera@@QAE_NHH@Z)
camera.obj:-1: error: LNK2019: unresolved external symbol "public: bool __thiscall CCyUSBEndPoint::XferData(unsigned char *,long &,class CCyIsoPktInfo *)" (?XferData@CCyUSBEndPoint@@QAE_NPAEAAJPAVCCyIsoPktInfo@@@Z) referenced in function "public: bool __thiscall Camera::SendDataToRegister(int,int)" (?SendDataToRegister@Camera@@QAE_NHH@Z)
To copy to clipboard, switch view to plain text mode
From what I was able to gather I need those Win32 libraries to solve these errors, hence my current predicament.
Bookmarks