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