diff -r f345bda72bc4 -r 43e37759235e Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/txtudll_8cpp_source.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/txtudll_8cpp_source.html Tue Mar 30 16:16:55 2010 +0100 @@ -0,0 +1,39 @@ + + +
+ +00001 // TXTUDLL.CPP +00002 // +00003 // © 2004 Nokia Corporation. All rights reserved. +00004 // +00005 +00006 #include <E32STD.H> +00007 #include "txtu.h" // CBaseMtmUi +00008 #include "txtupan.h" // panic codes +00009 +00010 // Global function declarations +00011 +00012 GLDEF_C void Panic(TTxtuMtmUdPanic aPanic) +00013 // Panic function +00014 { +00015 User::Panic(KTEXTMTMUIPanic, aPanic); +00016 } +00017 +00018 EXPORT_C CBaseMtmUi* NewMtmUiL(CBaseMtm& aMtm, CRegisteredMtmDll& aRegisteredDll) +00019 // Factory function +00020 { +00021 return CTextMtmUi::NewL(aMtm, aRegisteredDll); +00022 } +00023 +