Hello,
My previous 2 postings didn't get through (At least they weren't on the web site.) If this is a repeat for you, please forgive me.
I am using VC++ 6.0, before I merged my code into the main project, everything was fine independently. However, now I am getting these errors below. If anyone can shed any light on the matter, it would be appreciated...
From what I can see from the log, you built a static library using Xerces, and you are now building a DLL named "Engine" linking against this static library.
In this case, you need to link Engine against Xerces too.
Alberto
--------------------Configuration: Engine - Win32 Debug--------------------
Linking...
Creating library Debug/Engine.lib and object Debug/Engine.exp
Lib.lib(ConstraintChecker.obj) : error LNK2001: unresolved external symbol "__declspec(dllimport) public: static void __stdcall xercesc_2_5::XMemory::operator delete(void *)" ([EMAIL PROTECTED]@@[EMAIL PROTECTED])
Lib.lib(ConstraintChecker.obj) : error LNK2001: unresolved external symbol "__declspec(dllimport) public: static void * __stdcall xercesc_2_5::XMemory::operator new(unsigned int)" ([EMAIL PROTECTED]@@[EMAIL PROTECTED])
Lib.lib(ConstraintChecker.obj) : error LNK2001: unresolved external symbol "__declspec(dllimport) public: static void __stdcall xercesc_2_5::XMLString::release(char * *)" ([EMAIL PROTECTED]@xercesc_2_5@@[EMAIL PROTECTED])
Lib.lib(ConstraintChecker.obj) : error LNK2001: unresolved external symbol "__declspec(dllimport) public: static char * __stdcall xercesc_2_5::XMLString::transcode(unsigned short const * const)" ([EMAIL PROTECTED]@xercesc_2_5@@[EMAIL PROTECTED])
Lib.lib(ConstraintChecker.obj) : error LNK2001: unresolved external symbol "public: class ostream & __thiscall ostream::operator<<(int)" (??6ostream@@[EMAIL PROTECTED]@Z)
Lib.lib(ConstraintChecker.obj) : error LNK2001: unresolved external symbol "public: class ostream & __thiscall ostream::operator<<(char const *)" (??6ostream@@[EMAIL PROTECTED]@Z)
Lib.lib(ConstraintChecker.obj) : error LNK2001: unresolved external symbol "class ostream_withassign cout" (?cout@@3Vostream_withassign@@A)
Lib.lib(ConstraintChecker.obj) : error LNK2001: unresolved external symbol "public: class ostream & __thiscall ostream::operator<<(unsigned char)" (??6ostream@@[EMAIL PROTECTED]@Z)
Lib.lib(ConstraintChecker.obj) : error LNK2001: unresolved external symbol "public: class ostream & __thiscall ostream::flush(void)" ([EMAIL PROTECTED]@@[EMAIL PROTECTED])
Lib.lib(ConstraintChecker.obj) : error LNK2001: unresolved external symbol "__declspec(dllimport) public: static class xercesc_2_5::DOMImplementation * __stdcall xercesc_2_5::DOMImplementationRegistry::getDOMImplementation(unsigned short const *)" (
[EMAIL PROTECTED]@xercesc_2_5@@[EMAIL PROTECTED]@[EMAIL PROTECTED])
Lib.lib(ConstraintChecker.obj) : error LNK2001: unresolved external symbol "__declspec(dllimport) public: static void __stdcall xercesc_2_5::XMLPlatformUtils::Initialize(char const * const,char const * const,class xercesc_2_5::PanicHandler * const,c
lass xercesc_2_5::MemoryManager * const)" ([EMAIL PROTECTED]@xercesc_2_5@@[EMAIL PROTECTED]@[EMAIL PROTECTED]@@Z)
Debug/Engine.dll : fatal error LNK1120: 11 unresolved externals
Error executing link.exe.
Install.exe - 12 error(s), 0 warning(s)
Sincerely -- Jimmy Yu
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
