devicemgmtnotifications/inc/dmdevdialogclientserver.h
branchRCL_3
changeset 62 19bba8228ff0
parent 61 b183ec05bd8c
child 65 5cc2995847ea
equal deleted inserted replaced
61:b183ec05bd8c 62:19bba8228ff0
     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: Implementation of DM Device Dialogs
       
    15 * 	This is part of syncmlfw.
       
    16 */
       
    17 
       
    18 #ifndef __DMDEVDIALOG_CONSTS_H__
       
    19 #define __DMDEVDIALOG_CONSTS_H__
       
    20 
       
    21 #include <e32std.h>
       
    22 #include <e32base.h>
       
    23 
       
    24 // server name
       
    25 _LIT(KDMDEVDIALOGSERVER,"dmdevicedialog");
       
    26 
       
    27 const TInt KDmDevDialogServerVersionMinor = 0;
       
    28 const TInt KDmDevDialogServerVersionMajor = 1;
       
    29 const TUint KDefaultMessageSlots=4;
       
    30 const TUint KDmDevDialogUid = 0x2002FF68;
       
    31 
       
    32 enum TNotifiertype
       
    33 {
       
    34 	EServerAlert,
       
    35 	EPkgConnectNoteIsActive,
       
    36 	EPkgZeroConnectNoteDismiss,
       
    37 	EPkgZeroConnectNoteShowAgain,
       
    38 	EShowDisplayAlert,
       
    39 	EShowConfirmationalert,
       
    40 	ECancelServerAlert
       
    41 	
       
    42 };
       
    43 #endif