applicationmanagement/inc/ApplicationManagementClientServer.h
changeset 42 aa33c2cb9a50
equal deleted inserted replaced
41:c742e1129640 42:aa33c2cb9a50
       
     1 /*
       
     2 * Copyright (c) 2000 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: Implementation of applicationmanagement components
       
    15 *
       
    16 */
       
    17  
       
    18 
       
    19 #ifndef __APPLICATIONMANAGEMENTCLIENTSERVER_H__
       
    20 #define __APPLICATIONMANAGEMENTCLIENTSERVER_H__
       
    21 
       
    22 #include <e32std.h>
       
    23 
       
    24 _LIT(KApplicationManagementServerName,"applicationmanagementserver");
       
    25 _LIT(KApplicationManagementServerImg,"\\applicationmanagementserver.exe");		// DLL/EXE name
       
    26 
       
    27 const TUid KApplicationManagementServerUid={0x200267FB};
       
    28 
       
    29 namespace NApplicationManagement
       
    30 	{
       
    31 	
       
    32 //const TInt KMaxReturnMessageLength = 100;
       
    33 //const TInt KElementIdMaxLength = 100;
       
    34 
       
    35 const TUint KMessageDelimiterChar = '|' ;
       
    36 
       
    37 
       
    38 const TInt KAMVerMajor = 1;
       
    39 const TInt KAMVerMinor = 0;
       
    40 const TInt KAMVerBuild = 0;
       
    41 
       
    42 
       
    43 enum TApplicationManagementMessages
       
    44 	{
       
    45 	EAddTrust,
       
    46 	EDeplCompCountOperation,
       
    47 	EDeplCompIdsOperation,
       
    48 //	EDeplCompDeliverStartOperation,
       
    49 	EDeplCompDeliverCompleteOperation,
       
    50 	EDeplCompGetOperation,
       
    51 	EDeplCompGetDataOperation,
       
    52 	EDeplCompGetDataLengthOperation,
       
    53 	EDeplCompAttrUpdateOperation, // updates "simple" common attribute
       
    54 	EDeplCompUpdateDataOperation, // updates "larger" attrbute, such as data
       
    55 	EDeplCompUpdateStreamedDataOperation,// 10
       
    56 	EInstallOperation, 
       
    57 	EUpdateOperation,
       
    58 	EDeplCompRemoveOperation,
       
    59 	EDeplCompDownloadOperation,
       
    60 	EDeplCompActivateOperation,
       
    61 	EDeplCompDeactivateOperation,
       
    62 	EDeplCompDeliverStartOperation2,
       
    63 	EDeplCompUpdateOperation, // updates whole component
       
    64 	EDeplCompGetUserIdOperation, // returns the user id
       
    65 	EDeplCompStartDownloadOperation,  // 20
       
    66 	EGetStateChangingIdsCountOperation,
       
    67 	EGetStateChangingIdsOperation, // gets list of ids that are potentially changing state
       
    68 	ECompleteStateChangeOperation, // completes change of state
       
    69 	EDeplCompGetTemporaryInstFile,
       
    70 	EDeplCompGetTargetURI,
       
    71 	EDeplCompGetFinalResultForGA,
       
    72 	EDeplCompGenericAlertSent,
       
    73 	ECheckStatusNodes,
       
    74     EPerformRfs,
       
    75 	ELast
       
    76 	
       
    77 	};
       
    78 
       
    79 	
       
    80 	}
       
    81 #endif// __ApplicationManagementCLIENTSERVER_H__
       
    82 	
       
    83 //  End of File