diff -r 000000000000 -r bde4ae8d615e os/ossrv/genericservices/s60compatibilityheaders/commonengine/inc/coneresloader.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/os/ossrv/genericservices/s60compatibilityheaders/commonengine/inc/coneresloader.h Fri Jun 15 03:10:57 2012 +0200 @@ -0,0 +1,47 @@ +/* +* Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "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: +* +*/ + + + +#ifndef CONERESLOADER_H +#define CONERESLOADER_H + +#include + +class CCoeEnv; + +NONSHARABLE_CLASS(RConeResourceLoader) +/** +@deprecated +@see RCoeResourceLoader +@note For compatibility with S60 only +*/ + { +public: + IMPORT_C RConeResourceLoader(CCoeEnv& aCoeEnv); + IMPORT_C TInt Open(TFileName& aFileName); + IMPORT_C void OpenL(TFileName& aFileName); + IMPORT_C void Close(); +private: + // Dummy members to make this the same size as a RCoeResourceLoader so + // in-place construction of the RCoeResourceLoader will work + void* iDummy1; // was CCoeEnv& + TInt iDummy2; // was TInt + }; + +#endif // CONERESLOADER_H +