sl@0: /* sl@0: * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * Name : ulibz.h sl@0: * sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: sl@0: #ifndef __ULIBZ_H__ sl@0: #define __ULIBZ_H__ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: sl@0: _LIT(KDIRBASE,"C:\\Libz"); sl@0: _LIT(KDIRPATH, "C:\\Libz\\Test1\\"); sl@0: _LIT(KGZFILE, "C:\\Libz\\Test1\\bye.gz"); sl@0: sl@0: sl@0: //literals for libz operations sl@0: _LIT(KLibzcomp_decomp, "libzcomp_decomp"); sl@0: _LIT(KLibzdefl_Infl, "libzdefl_Infl"); sl@0: _LIT(KLibzgzio, "libzgzio"); sl@0: _LIT(KLibzversion, "libzversion"); sl@0: sl@0: class CTestlibz : public CTestStep sl@0: { sl@0: public: sl@0: ~CTestlibz(); sl@0: CTestlibz(const TDesC& aStepName); sl@0: TVerdict doTestStepL(); sl@0: TVerdict doTestStepPreambleL(); sl@0: TVerdict doTestStepPostambleL(); sl@0: private: sl@0: //libz Test cases sl@0: TInt libzcomp_decomp(); sl@0: TInt libzdefl_Infl(); sl@0: TInt libzdeflate(Byte*, uLong); sl@0: TInt libzinflate(Byte*, uLong, Byte*, uLong); sl@0: TInt libzgzio(); sl@0: TInt libzversion(); sl@0: RFs iRfs; sl@0: RFile iRfile; sl@0: }; sl@0: #endif // __ULIBZ_H__ sl@0: