Update contrib.
1 // Copyright (c) 2004-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.
21 //Forward declarations
23 class CResourceArchiveImpl;
26 Class for accessing the resource archive SPI file
29 class RResourceArchive
32 IMPORT_C RResourceArchive();
34 IMPORT_C void Close();
36 IMPORT_C void OpenL(RFs& aFs,const TDesC &aName);
38 IMPORT_C void OpenL(RFs& aFs,const TDesC& aSpiPath,const TDesC& aSpiName);
40 IMPORT_C CResourceFile* NextL(HBufC*& aRscFileName);
44 IMPORT_C void Reset();
48 CResourceArchiveImpl* iArchiveImpl;