kernel/eka/nkern/nkern_ext.mmh
changeset 0 a41df078684a
equal deleted inserted replaced
-1:000000000000 0:a41df078684a
       
     1 // Copyright (c) 1997-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 "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 // e32/nkern/nkern_ext.mmh
       
    15 // 
       
    16 //
       
    17 
       
    18 macro				__KERNEL_MODE__
       
    19 
       
    20 #ifndef __BUILD_AS_THUMB__
       
    21 ALWAYS_BUILD_AS_ARM
       
    22 #endif
       
    23 
       
    24 // Pick up any Variant or ASSP headers first
       
    25 #ifdef VariantNKernIncludePath
       
    26 macro				__VARIANT_NKERN_INCLUDE_PATH_PRESENT__
       
    27 userinclude			VariantNKernIncludePath
       
    28 systeminclude		VariantNKernIncludePath
       
    29 #endif
       
    30 #ifdef AsspNKernIncludePath
       
    31 macro				__ASSP_NKERN_INCLUDE_PATH_PRESENT__
       
    32 userinclude			AsspNKernIncludePath
       
    33 systeminclude		AsspNKernIncludePath
       
    34 #endif
       
    35 
       
    36 SYMBIAN_BASE_SYSTEMINCLUDE(nkern)
       
    37 
       
    38 #ifdef MARM
       
    39 SYMBIAN_BASE_SYSTEMINCLUDE(nkern/arm)
       
    40 #endif
       
    41 
       
    42 #ifdef X86
       
    43 SYMBIAN_BASE_SYSTEMINCLUDE(nkern/x86)
       
    44 #endif
       
    45 
       
    46 #ifdef WINS
       
    47 SYMBIAN_BASE_SYSTEMINCLUDE(nkern/win32)
       
    48 #endif
       
    49 
       
    50 OS_LAYER_SYSTEMINCLUDE_SYMBIAN
       
    51 
       
    52 #define	NKERN_DIR	nkern
       
    53 
       
    54 #ifdef STANDALONE_NANOKERNEL
       
    55 #ifndef	ExtraNKernIncludePath
       
    56 #ifdef MARM
       
    57 #define	ExtraNKernIncludePath	SYMBIAN_OS_LAYER_PLATFORM_EXPORT_PATH(kernel/arm)
       
    58 #elif defined(X86)
       
    59 #define	ExtraNKernIncludePath	SYMBIAN_OS_LAYER_PLATFORM_EXPORT_PATH(kernel/x86)
       
    60 #endif
       
    61 #endif
       
    62 #ifdef	ExtraNKernIncludePath
       
    63 userinclude			ExtraNKernIncludePath
       
    64 systeminclude		ExtraNKernIncludePath
       
    65 #endif
       
    66 #endif