Hi Mayra, Please post usage questions to the [email protected] mailing list instead of c-dev.
Mayra <[email protected]> writes: > 1>XercesLib.lib(Win32TransService.obj) : error LNK2019: unresolved external > symbol __imp__RegQueryValueExA@24 referenced in function "bool __cdecl > xercesc_3_1::isAlias(struct HKEY__ * const,char * const,unsigned int)" > (?isAlias@xercesc_3_1@@YA_NQAUHKEY__@@QADI@Z) You are linking to a static version of Xerces-C++ library. All the unresolved symbols are Registry functions. You need to link your application to Advapi32.lib. Boris -- Boris Kolpackov, Code Synthesis http://codesynthesis.com/~boris/blog Compiler-based ORM system for C++ http://codesynthesis.com/products/odb Open-source XML data binding for C++ http://codesynthesis.com/products/xsd XML data binding for embedded systems http://codesynthesis.com/products/xsde --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
