sl@0: // Copyright (c) 2004-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: // sl@0: sl@0: #ifndef SRVREQS_H sl@0: #define SRVREQS_H sl@0: sl@0: #include sl@0: sl@0: enum TServerRequest sl@0: { sl@0: EInitialise, sl@0: ECreateInt, sl@0: ECreateReal, sl@0: ECreateString, sl@0: EDelete, sl@0: EGetInt, sl@0: ESetInt, sl@0: EGetReal, sl@0: ESetReal, sl@0: EGetString, sl@0: ESetString, sl@0: EFind, sl@0: EFindEqInt, sl@0: EFindEqReal, sl@0: EFindEqString, sl@0: EFindNeqInt, sl@0: EFindNeqReal, sl@0: EFindNeqString, sl@0: EGetFindResult, sl@0: ENotifyRequestCheck, sl@0: ENotifyRequest, sl@0: ENotifyCancel, sl@0: ENotifyCancelAll, sl@0: EGroupNotifyRequest, sl@0: EGroupNotifyCancel, sl@0: EReset, sl@0: EResetAll, sl@0: ETransactionStart, sl@0: ETransactionCommit, sl@0: ETransactionCancel, sl@0: EMove, sl@0: ETransactionState, sl@0: ETransactionFail, sl@0: EDeleteRange, sl@0: EGetMeta, sl@0: sl@0: EClose, //Add any new func code above EClose, not after sl@0: //Or you need to insert gaps in actionTable! sl@0: ELastInTable=EClose, //ELastInTable should always be set equal to the last service ID sl@0: sl@0: EGetSetParameters, sl@0: EInitialiseServer sl@0: }; sl@0: sl@0: #if defined(__CENTREP_SERVER_PERFTEST__) || defined(__CENTREP_SERVER_MEMTEST__) || defined(__CENTREP_SERVER_CACHETEST__) sl@0: sl@0: enum TServerGetSetParametersSubCmd sl@0: { sl@0: //Subcommands for CentRep server performance test which is run when __CENTREP_SERVER_PERFTEST__ macro is defined sl@0: EGetPerfResults, sl@0: ERestartPerfTests, sl@0: EStopPerfTests, sl@0: //Subcommands for CentRep server memory test which is run when __CENTREP_SERVER_MEMTEST__ macro is defined sl@0: EGetMemResults, sl@0: ERestartMemTests, sl@0: ESingleMemTest, sl@0: //Subcommands for CentRep server cache test which is run when __CENTREP_SERVER_CACHETEST__ macro is defined sl@0: EEnableCache, sl@0: EDisableCache, sl@0: // The identifier for last command. Should always remain at the end sl@0: ELast sl@0: }; sl@0: #endif // __CENTREP_SERVER_PERFTEST__ || __CENTREP_SERVER_MEMTEST__ || __CENTREP_SERVER_CACHETEST__ sl@0: sl@0: struct TKeyFilter sl@0: { sl@0: TUint32 iPartialId; sl@0: TUint32 iIdMask; sl@0: }; sl@0: sl@0: #endif // SRVREQS_H