diff -r f345bda72bc4 -r 43e37759235e Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/txtidll_8cpp_source.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/txtidll_8cpp_source.html Tue Mar 30 16:16:55 2010 +0100 @@ -0,0 +1,57 @@ + + +
+ +00001 // TXTIDLL.CPP +00002 // +00003 // © 2004 Nokia Corporation. All rights reserved. +00004 // +00005 +00006 #if !defined(__E32STD_H__) +00007 #include <e32std.h> +00008 #endif +00009 +00010 #if !defined(__TXTI_H__) +00011 #include "txti.h" +00012 #endif +00013 #if !defined(__TXTIPAN_H__) +00014 #include "txtipan.h" +00015 #endif +00016 +00017 // +00018 // Global function declarations +00019 // +00020 +00021 #ifndef EKA2 +00022 GLDEF_C TInt E32Dll(TDllReason/* aReason*/) +00023 // DLL entry point +00024 { +00025 return (KErrNone); +00026 } +00027 #endif +00028 +00029 GLDEF_C void Panic(TTxtiMtmUdPanic aPanic) +00030 // Panic function +00031 { +00032 _LIT(KTXTIPanic,"TXTI"); +00033 User::Panic(KTXTIPanic, aPanic); +00034 } +00035 +00036 +00037 EXPORT_C CBaseMtmUiData* NewMtmUiDataLayerL(CRegisteredMtmDll& aRegisteredDll) +00038 // Factory function +00039 { +00040 return CTxtiMtmUiData::NewL(aRegisteredDll); +00041 } +