examples/ForumNokia/S60_3rd_Edition_TextMTM_Example/modules/UiData/src/txtidll.cpp

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         }

Generated by  doxygen 1.6.2