diff -r 79859ed3eea9 -r 919f36ff910f widgets/widgetsidchecker/src/widgetsidchecker.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/widgets/widgetsidchecker/src/widgetsidchecker.cpp Wed Sep 01 12:28:30 2010 +0100 @@ -0,0 +1,85 @@ +/* +* Copyright (c) 2007, 2008 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of the License "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* +*/ +#include "widgetsidchecker.h" + +#include +#include +#include +#include +#include +#include +//#include +#include + +//WidgetRegistry.EXE[10282f06]0001 +//const TUid KWidgetRegistry = { 0x10282F06 }; +//0x10282F06 +//hb +//#include +////////////////////////////// +// ECOM Implementation Table +////////////////////////////// + + +TBool E32Dll() + { + return (ETrue); + } + +const TImplementationProxy ImplementationTable[] = + { + IMPLEMENTATION_PROXY_ENTRY(0x10281FC0, CWidgetSidChecker::NewL) + }; + +EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount) + { + aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy); + return ImplementationTable; + } + +////////////////////////////// +// CWidgetSidChecker +////////////////////////////// + +CWidgetSidChecker* CWidgetSidChecker::NewL() + { + CWidgetSidChecker* self = new(ELeave) CWidgetSidChecker(); + return self; + } + + CWidgetSidChecker::CWidgetSidChecker() + { + } + + +CWidgetSidChecker::~CWidgetSidChecker() + { + + } + +TBool CWidgetSidChecker::AppRegisteredAt(const TUid& /*aSid*/, TDriveUnit /*aDrive*/) + { + return ETrue; + } + + +void CWidgetSidChecker::SetRescanCallBackL(const TCallBack &/*aCallBack*/) + { + return; + } + +// End of file