c++ - unresolved external symbol with FTD3XX.dll -
using vs2005 on mfc project, can't make function call ftd3xx.dll using lib ftdi provided (usb serial)
imported ftd3xx.h file , added ftd3xx.lib additional dependencies under linker > input.
none of calls work, example:
ft_status status;
dword dwnumdevs;
status = ft_createdeviceinfolist(&dwnumdevs);
it keeps failing on unresolved external symbol meaning did not import dll properly.
what missing here ?
thank you
resolved using .lib file.
it possible dll tries use compiled on older vs.
Comments
Post a Comment