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 the License "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: // sl@0: sl@0: #ifndef T_RMDEBUG_APP_H sl@0: #define T_RMDEBUG_APP_H sl@0: sl@0: _LIT(KRMDebugTestApplication, "z:\\sys\\bin\\t_rmdebug_app.exe"); sl@0: _LIT(KUserPanic, "UserPanic"); sl@0: const TInt KUserPanicCode = 0x1234ABCD; sl@0: sl@0: enum TMyPropertyKeys {EMyPropertyInteger}; sl@0: sl@0: sl@0: // enumeration of functions to call in test debug application sl@0: enum TDebugFunctionType sl@0: { sl@0: EDefaultDebugFunction, sl@0: EPrefetchAbortFunction, sl@0: EUserPanicFunction, sl@0: EStackOverflowFunction, sl@0: EDataAbortFunction, sl@0: EUndefInstructionFunction, sl@0: EDataReadErrorFunction, sl@0: EDataWriteErrorFunction, sl@0: EUserExceptionFunction, sl@0: EWaitFiveSecondsThenExit, sl@0: ESpinForever, sl@0: ESpinForeverWithBreakPoint sl@0: }; sl@0: sl@0: #endif //T_RMDEBUG_APP_H sl@0: