os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComServerStart.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1997-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 // define the shared client/server definitions and 
    15 // services provided by the ECom client session
    16 // 
    17 //
    18 
    19 #ifndef __ECOMSERVERSTART_H__
    20 #define __ECOMSERVERSTART_H__
    21 
    22 #include <e32base.h>
    23 
    24 // Definitions for location & startup of the ECom server
    25 // Define the ECom server name
    26 // Shared client/server definitions and services provided by
    27 // the ECom server
    28 
    29 #include <e32std.h>
    30 
    31 /** 
    32 The name of the server 
    33 @internalComponent
    34 */
    35 _LIT(KEComServerName,"!ecomserver");
    36 _LIT(KEComServerImg,"z:\\system\\libs\\ecomserver");	// DLL/EXE full path
    37 
    38 /** 
    39 The unique UID identifying this server implementation 
    40 @internalComponent
    41 */
    42 const TUid KEComServerUid3={0x10009D8F};
    43 
    44 /** 
    45 The ECom server Major version number 
    46 @internalComponent
    47 */
    48 const TInt KEComServerMajorVN=1;
    49 /** 
    50 The ECom server Minor version number 
    51 @internalComponent
    52 */
    53 const TInt KEComServerMinorVN=0;
    54 /** 
    55 The ECom server Build version number 
    56 @internalComponent
    57 */
    58 const TInt KEComServerBuildVN=0;
    59 
    60 /**
    61 @fn				ServerStart()
    62 @internalComponent
    63 Intended Usage	: Called from E32Main to launch server	
    64 Error Condition	: None.
    65 @since			9.2
    66 @return			A system wide error code indicating the success of the server launch
    67  */
    68 TInt ServerStart();
    69 
    70 #endif