Help me look for missing what!!!

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
jl0206
Posts: 55
Joined: Mon Jun 07, 2004 4:56 am

Help me look for missing what!!!

Post by jl0206 »

when i build the ICE frame ,it always error like this:
Linking...
main.obj : error LNK2001: unresolved external symbol "public: __thiscall example_Engine::example_Engine(void)" (??0example_Engine@@QAE@XZ)
main.obj : error LNK2001: unresolved external symbol "public: __thiscall example_Engine::~example_Engine(void)" (??1example_Engine@@QAE@XZ)
main.obj : error LNK2001: unresolved external symbol "public: void __thiscall game_Engine::Render(void)" (?Render@game_Engine@@QAEXXZ)
main.obj : error LNK2001: unresolved external symbol "public: bool __thiscall game_Engine::Update(void)" (?Update@game_Engine@@QAE_NXZ)
main.obj : error LNK2001: unresolved external symbol "public: bool __thiscall example_Engine::Init(unsigned short const *,enum irr::video::EDriverType,int,int)" (?Init@example_Engine@@QAE_NPBGW4EDriverType@video@irr@@HH@Z)
Debug/main.exe : fatal error LNK1120: 5 unresolved externals
Error executing link.exe.

main.exe - 6 error(s), 0 warning(s)

Can you tell me what LIB or include I missed ????thanks
Tyn
Posts: 932
Joined: Thu Nov 20, 2003 7:53 pm
Location: England
Contact:

Post by Tyn »

Without looking at the code those error messages mean very little.
etcaptor
Posts: 871
Joined: Fri Apr 09, 2004 10:32 pm
Location: Valhalla
Contact:

Post by etcaptor »

Sure you have omited to include in your project some libs, probably iirlicht.lib
Unarekin
Posts: 60
Joined: Thu Apr 22, 2004 11:02 pm

Post by Unarekin »

etcaptor wrote:probably iirlicht.lib
More likely it's related to the ICE framework, which uses example_Engine (As an example, amazingly) and game_Engine, IIRC.
jl0206
Posts: 55
Joined: Mon Jun 07, 2004 4:56 am

So I think maybe something wrong with the ice framework

Post by jl0206 »

More likely it's related to the ICE framework, which uses example_Engine (As an example, amazingly) and game_Engine, IIRC. ,
Any one can help me????
jl0206
Posts: 55
Joined: Mon Jun 07, 2004 4:56 am

Post by jl0206 »

I have included all lib into the project . But it still happen like before ...what'wrong ???
Post Reply