Which lib file shoud I link?

Login to reply to this topic.
Fri, 2005-08-05 04:35
Joined: 2005-08-04
Forum posts: 8
I writed a Dialog Class inherited from CEikDialog,many similar errors occured,one of them is:
unresolved external symbol "protected: virtual void __thiscall CEikDialog::PageChangedL(int)" (?PageChangedL@CEikDialog@@MAEXH@Z)
I included <eikdialg.h>,but I don't know which lib file shoud I link,because I can't find CEikDialog class in SDK.

Fri, 2005-08-05 04:50
Joined: 2004-01-09
Forum posts: 188
Re: Which lib file shoud I link?
HI,

you have to include eikdlg.lib in your mmp file and recompile again.
See in SDK help, For every class help, on the top of the help page it is written like this
example : for class CEikDialog

it is written on the top

Location: techview/eikdialg.h
Link against: eikdlg.lib

from their you will come to know which header file to include and which lib file to link.

----
Chetan Kulshrestha

Fri, 2005-08-05 05:06
Joined: 2005-08-04
Forum posts: 8
Re: Which lib file shoud I link?
Chetan,thank you very much!
  • Login to reply to this topic.