common/tools/ats/smoketest/lbs/internal/lbstestserver/inc/lbstestmessageenums.h
changeset 748 e13acd883fbe
child 872 17498133d9ad
equal deleted inserted replaced
747:76f9aaeefbab 748:e13acd883fbe
       
     1 // Copyright (c) 2006-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 the License "Symbian Foundation License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // The message enums/opcodes shared between the client and the server sides
       
    15 // 
       
    16 //
       
    17 
       
    18 #ifndef LBSTESTMESSAGEENUMS_H__
       
    19 #define LBSTESTMESSAGEENUMS_H__
       
    20 
       
    21 #include "lbsmessageenums.h"
       
    22 
       
    23 enum ELbsTestClientServerMessageEnums
       
    24 	{	
       
    25 	//
       
    26 	// If you need to add any more message Ids, add them between
       
    27 	// EFirstLbsTestServerMessage and ELastLbsTestServerMessage.
       
    28 	// (Otherwise the security policy in lbstestserver.cpp may not
       
    29 	// allow the new message.)
       
    30 	//
       
    31 
       
    32 	// Start of lbstest specific messages after the last of the
       
    33 	// basic server framework messages, ELastSessionMessageId,
       
    34 	// which is defined as KMaxInt32/2 aka 16383 (0x3FFFFFFF)
       
    35 	// in lbsmessageenums.h
       
    36 	EFirstLbsTestServerMessage						= 0x40000000,
       
    37 	
       
    38 	ELbsTestStopLbsSystem							= EFirstLbsTestServerMessage,
       
    39 	ELbsTestStartLbsSystem							= 0x40000001,
       
    40 	ELbsTestResetLbsSystem							= 0x40000002,
       
    41 	
       
    42 	ELastLbsTestServerMessage,
       
    43 	
       
    44 	};
       
    45 
       
    46 #endif //LBSTESTMESSAGEENUMS_H__