javaruntimes/starter/inc/javaprocessconstants.h
changeset 21 2a9601315dfc
equal deleted inserted replaced
18:e8e63152f320 21:2a9601315dfc
       
     1 /*
       
     2 * Copyright (c) 2009 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:  This file contains Java process constants and dll names,
       
    15 *                module and message ids.
       
    16 *
       
    17 */
       
    18 
       
    19 #ifndef JAVAPROCESSCONSTANTS_H
       
    20 #define JAVAPROCESSCONSTANTS_H
       
    21 
       
    22 namespace java // codescanner::namespace
       
    23 {
       
    24 namespace runtime // codescanner::namespace
       
    25 {
       
    26 
       
    27 /**
       
    28  * Defines the Java process name. When the Java is eclipsed on top of legacy
       
    29  * Java the process name must be the same as in legacy. This is because we
       
    30  * are using same data cage
       
    31  */
       
    32 #ifdef RD_JAVA_S60_RELEASE_5_0_IAD // codescanner::ifpreprocessor
       
    33 const char* const JAVA_PROCESS = "j9midps60";
       
    34 #else // RD_JAVA_S60_RELEASE_5_0_IAD
       
    35 const char* const JAVA_PROCESS = "javamidp";
       
    36 #endif // RD_JAVA_S60_RELEASE_5_0_IAD
       
    37 
       
    38 // DLL responsible for starting the midp runtime
       
    39 const char* const JAVA_MIDP_STARTER_DLL = "javamidpstarter";
       
    40 
       
    41 // DLL responsible for starting the installer runtime
       
    42 const char* const JAVA_INSTALLER_STARTER_DLL = "javainstallerstarter";
       
    43 
       
    44 // DLL responsible for starting the preinstaller
       
    45 const char* const JAVA_PREINSTALLER_STARTER_DLL = "javapreinstaller";
       
    46 
       
    47 // DLL responsible for starting the javasizehelperserver
       
    48 const char* const JAVA_SIZE_HELPER_SERVER_DLL = "javasizehelperserver";
       
    49 
       
    50 } // namespace runtime
       
    51 } // namespace java
       
    52 
       
    53 #endif // JAVAPROCESSCONSTANTS_H