applicationmanagement/inc/ApplicationManagementClientServer.h
changeset 0 3ce708148e4d
child 57 6757f1e2efd2
equal deleted inserted replaced
-1:000000000000 0:3ce708148e4d
       
     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 
       
    20 #ifndef __APPLICATIONMANAGEMENTCLIENTSERVER_H__
       
    21 #define __APPLICATIONMANAGEMENTCLIENTSERVER_H__
       
    22 
       
    23 #include <e32std.h>
       
    24 
       
    25 _LIT(KApplicationManagementServerName,"ApplicationManagement");
       
    26 _LIT(KApplicationManagementServerImg,"ApplicationManagement");		// DLL/EXE name
       
    27 
       
    28 const TUid KApplicationManagementServerUid={0x1020781C};
       
    29 
       
    30 namespace NApplicationManagement
       
    31 	{
       
    32 	
       
    33 //const TInt KMaxReturnMessageLength = 100;
       
    34 //const TInt KElementIdMaxLength = 100;
       
    35 
       
    36 const TUint KMessageDelimiterChar = '|' ;
       
    37 
       
    38 
       
    39 const TInt KAMVerMajor = 1;
       
    40 const TInt KAMVerMinor = 0;
       
    41 const TInt KAMVerBuild = 0;
       
    42 
       
    43 
       
    44 enum TApplicationManagementMessages
       
    45 	{
       
    46 	EAddTrust,
       
    47 	EDeplCompCountOperation,
       
    48 	EDeplCompIdsOperation,
       
    49 //	EDeplCompDeliverStartOperation,
       
    50 	EDeplCompDeliverCompleteOperation,
       
    51 	EDeplCompGetOperation,
       
    52 	EDeplCompGetDataOperation,
       
    53 	EDeplCompGetDataLengthOperation,
       
    54 	EDeplCompAttrUpdateOperation, // updates "simple" common attribute
       
    55 	EDeplCompUpdateDataOperation, // updates "larger" attrbute, such as data
       
    56 	EDeplCompUpdateStreamedDataOperation,// 10
       
    57 	EInstallOperation, 
       
    58 	EUpdateOperation,
       
    59 	EDeplCompRemoveOperation,
       
    60 	EDeplCompDownloadOperation,
       
    61 	EDeplCompActivateOperation,
       
    62 	EDeplCompDeactivateOperation,
       
    63 	EDeplCompDeliverStartOperation2,
       
    64 	EDeplCompUpdateOperation, // updates whole component
       
    65 	EDeplCompGetUserIdOperation, // returns the user id
       
    66 	EDeplCompStartDownloadOperation,  // 20
       
    67 	EGetStateChangingIdsCountOperation,
       
    68 	EGetStateChangingIdsOperation, // gets list of ids that are potentially changing state
       
    69 	ECompleteStateChangeOperation, // completes change of state
       
    70 	EDeplCompGetTemporaryInstFile,
       
    71 	EDeplCompGetTargetURI,
       
    72 	EDeplCompGetFinalResultForGA,
       
    73 	EDeplCompGenericAlertSent,
       
    74 	ECheckStatusNodes,
       
    75     EPerformRfs,
       
    76 	ELast
       
    77 	
       
    78 	};
       
    79 
       
    80 	
       
    81 	}
       
    82 #endif// __ApplicationManagementCLIENTSERVER_H__
       
    83 	
       
    84 //  End of File