sysstatemgmt/systemstatemgr/sus/inc/susutilclisrv.h
changeset 0 4e1aa6a622a0
equal deleted inserted replaced
-1:000000000000 0:4e1aa6a622a0
       
     1 // Copyright (c) 2008-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".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #ifndef __SUSUTILCLISRV_H__
       
    17 #define __SUSUTILCLISRV_H__
       
    18 
       
    19 /**
       
    20 @internalComponent
       
    21 @released
       
    22 */
       
    23 _LIT(KSusUtilServerName, "!SusUtilSrv");
       
    24 
       
    25 /**
       
    26 A version must be specifyed when creating a session with the server
       
    27 @internalComponent
       
    28 @released
       
    29 */
       
    30 const TUint KSusUtilServMajorVersionNumber=0;
       
    31 /**
       
    32 @internalComponent
       
    33 @released
       
    34 */
       
    35 const TUint KSusUtilServMinorVersionNumber=1;
       
    36 /**
       
    37 @internalComponent
       
    38 @released
       
    39 */
       
    40 const TUint KSusUtilServBuildVersionNumber=1;
       
    41 
       
    42 /**
       
    43 @internalComponent
       
    44 @released
       
    45 */
       
    46 const TInt  KSusUtilServFirstUsedOpCode = 1;
       
    47 
       
    48 /**
       
    49 Op-codes used in message passing between client and server.
       
    50 @internalComponent
       
    51 @released
       
    52 @capability DiskAdmin PowerMgmt ProtServ SwEvent WriteDeviceData ReadDeviceData
       
    53 */
       
    54 enum TSusUtilServerRequests
       
    55 	{
       
    56 	ERequestLoadSup = KSusUtilServFirstUsedOpCode,
       
    57 	ERequestLoadSupCancel,
       
    58 	ERequestUnLoadSup,
       
    59 	//Only for testing purpose and used in debug builds only
       
    60 	EDebugMarkHeap,
       
    61 	EDebugMarkHeapEnd,
       
    62 	EDebugCompressPluginArray,
       
    63 	//End of supported opcodes
       
    64 	EEndOfSusUtilOpCodes
       
    65 	};
       
    66 
       
    67 #endif