java_stubs/javaregistry/clientserver/common/inc/javaregdef.h
branchRCL_3
changeset 8 014f8c42e1d4
child 11 0fdfe802150c
equal deleted inserted replaced
7:9d598f7f02da 8:014f8c42e1d4
       
     1 /*
       
     2 * Copyright (c) 2005-2006 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:  javaregdef definition
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef JAVAREGDEF_H
       
    20 #define JAVAREGDEF_H
       
    21 
       
    22 #include <e32std.h>
       
    23 
       
    24 namespace Java
       
    25 {
       
    26 namespace Manager
       
    27 {
       
    28 namespace Registry
       
    29 {
       
    30 
       
    31 // name of java registry server
       
    32 _LIT(KJavaRegServerName, "!javaregistry");
       
    33 
       
    34 // the executable name of java registry server
       
    35 _LIT(KJavaRegServerExeName, "javaregistry.exe");
       
    36 
       
    37 // Function ids of client requests
       
    38 enum TRequests
       
    39 {
       
    40     EInitializeServerUseIntegr,
       
    41     EEntryExists,
       
    42     EGetEntryUids,
       
    43     EGetEntry,
       
    44     EGetEntryFromAll,
       
    45     EFindEntries,
       
    46     EFindAllEntries,
       
    47     EInitializeServerTransId,
       
    48     ESetEntry,
       
    49     ERemoveEntry,
       
    50     ERemoveEntryFromAll,
       
    51     EAllocateUids,
       
    52     ESetBackupState
       
    53 };
       
    54 
       
    55 }//namespace Registry
       
    56 }//namespace Manager
       
    57 }//namespace Java
       
    58 
       
    59 #endif // JAVAREGDEF_H
       
    60