00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #include <e32base.h>
00017 #include <ecom.h>
00018 #include <implementationproxy.h>
00019
00020 #include "MMFExPcm8ToPcm16Codec.h"
00021 #include "UIDs.hrh"
00022
00023
00024
00025
00026
00027 const TImplementationProxy ImplementationTable[] =
00028 {
00029 IMPLEMENTATION_PROXY_ENTRY(KExCodecUID, CMMFExPcm8Pcm16Codec::NewL)
00030 };
00031
00032 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
00033 {
00034 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
00035
00036 return ImplementationTable;
00037 }
00038