Update contrib.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // This file is part of the EPOC Emulator Variant Base Port
15 // Hardware Configuration Repository Platform Specific Layer (PSL)
19 // -- INCLUDES ----------------------------------------------------------------
22 #include "hcr_debug.h"
28 // -- GLOBALS -----------------------------------------------------------------
31 GLREF_C HCR::SRepositoryCompiled gRepository;
34 // -- CLASSES- ----------------------------------------------------------------
37 class HCRVariant : public HCR::MVariant
43 virtual ~HCRVariant();
49 TBool IgnoreCoreImgRepository();
50 TInt GetCompiledRepositoryAddress( TAny* & aAddr);
51 TInt GetOverrideRepositoryAddress( TAny* & aAddr);
58 // -- METHODS -----------------------------------------------------------------
61 HCRVariant::HCRVariant()
63 HCR_FUNC("HCRVariant");
67 HCRVariant::~HCRVariant()
69 HCR_FUNC("~HCRVariant");
73 TInt HCRVariant::Initialise()
75 HCR_FUNC("HCRVariant::Initialise");
77 HCR_TRACE_RETURN(KErrNone);
81 TInt HCRVariant::GetCompiledRepositoryAddress( TAny* & aAddr)
83 HCR_FUNC("HCRVariant::GetCompiledRepositoryAddress");
85 aAddr = static_cast<TAny*>(&gRepository);
86 HCR_TRACE_RETURN(KErrNone);
89 TBool HCRVariant::IgnoreCoreImgRepository()
91 HCR_FUNC("HCRVariant::IgnoreCoreImgRepository");
93 HCR_TRACE_RETURN(EFalse);
96 TInt HCRVariant::GetOverrideRepositoryAddress( TAny* &)
98 HCR_FUNC("HCRVariant::GetRAMRepositoryAddress");
100 // OverrideRepository not supported in EPOC Emulator version
102 HCR_TRACE_RETURN(KErrNotSupported);
106 // -- ENTRY POINTS ------------------------------------------------------------
109 GLDEF_C HCR::MVariant* CreateHCRVariant()
111 HCR_FUNC("CreateHCRVariant");
113 return new HCRVariant;