sorry if this is the wrong place... wasn't sure where else to ask
this.
I am doing some Nokia Series 60 programming and have been staring at a
linker error the past three hours. the calling code that generates the
error is this:
void CListItem::ExternalizeL(RWriteStream& aStream) const
{
aStream << *iName;
}
basically writing a dereferenced HBufC* (iName) to file.
I suspect the error is due to my not including estor.lib in my .mmp
file correctly as my 'LIBRARY estor.lib' command always reverts to '//
[-] LIBRARY estor.lib' automatically after I try to compile.
does anyone have any idea what I'm doing wrong? do I need to place
estor.lib in a particular directory?
sorry for the ignorance