appfw/apparchitecture/tef/TWindowChaining.h
changeset 0 2e3d3ce01487
child 29 6a787171e1de
equal deleted inserted replaced
-1:000000000000 0:2e3d3ce01487
       
     1 // Copyright (c) 2005-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 //
       
    15 
       
    16 /**
       
    17  @file
       
    18  @internalComponent - Internal Symbian test code 
       
    19 */
       
    20 
       
    21 
       
    22 #if !defined(__TWINDOWCHAINING_H__)
       
    23 #define __TWINDOWCHAINING_H__
       
    24 
       
    25 #if !defined(__E32STD_H__)
       
    26 #include <e32std.h>
       
    27 #endif
       
    28 
       
    29 /** Ordinal priority chosen at random */
       
    30 const TInt KExoticOrdinalPriority=748;
       
    31 
       
    32 /** UIDs of the child and server (launch) application */
       
    33 const TUid KUidTChainChildApp = { 0x10009e9f };
       
    34 const TUid KUidTChainServerApp = { 0x10009f9a };
       
    35 
       
    36 /** KTWindowChainingTestPassed is a number chosen at random to be used as an exit reason
       
    37     for TWindowChainingApp.app's application thread to signify that the test passed */
       
    38 const TInt KTWindowChainingTestPassed = 2387;
       
    39 
       
    40 const TInt KChainPass = 42;
       
    41 const TInt KChainFail = 59;
       
    42 
       
    43 /** Message ID (chosen at random) to query child to check parent id matches */
       
    44 const TInt KQueryChainChild1 = 428;
       
    45 const TInt KQueryChainChild2 = 429;
       
    46 
       
    47 _LIT(KWinChainChildAppFileName, "z:\\sys\\bin\\t_winchainLaunch.exe");
       
    48 #endif // __TWINDOWCHAINING_H__
       
    49