00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #include "embedded.h"
00017 #include <eikstart.h>
00018
00019
00020 TInt E32Dll()
00021 {
00022 return KErrNone;
00023 }
00024
00025
00026 static CApaApplication* NewApplication()
00027 {
00028 return new CExampleApplication;
00029 }
00030
00031
00032 static const TImplementationProxy ImplementationTable[]=
00033 {
00034 IMPLEMENTATION_PROXY_ENTRY(0xE800008F, NewApplication)
00035 };
00036
00037
00038 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
00039 {
00040 aTableCount=sizeof(ImplementationTable)/sizeof(ImplementationTable[0]);
00041 return ImplementationTable;
00042 }