问题:
* RCOMP failed - deleting output files
解答:
This error is mainly if there is any errors in the resource files (or for that matter if its un-available..havent faced this situation of unavailablity though..so not completely sure of the kind of error verbose if its totally absent)
问题:
ERROR: Target file must be given as first argument.
Type mifconv -? for help
解答:
关于Symbian里面的mifconv ,(.mk和.miflist文件的作用和工作)【转】2010-04-30 15:28简单的说,mifconv是symbian提供的一个图像压缩打包工具,用于将svg/bmp格式的多个源文件合成一个mif/mbm复合文件。关于mifconv的更多介绍可参考相关文档,这里我这要介绍下它的用法。
class CChatContainer: public CCoeControl, public MLog // MLog 为纯虚函数
void LogL( const TDesC& aText, const TDesC& aExtratext );
void CChatContainer::LogL( const TDesC& aText, \
const TDesC& aExtraText )
illegal use of abstract class ('MLog::LogL(const TDesC16 &, const TDes16 &)')
派生类必须对虚基类得虚函数进行重写,才能定义对象。
CChatContainer* self = new ( ELeave ) CChatContainer; // 错误的用法