1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/kernelhwsrv/kernel/eka/nkern/nkern_ext.mmh Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,66 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of the License "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// e32/nkern/nkern_ext.mmh
1.18 +//
1.19 +//
1.20 +
1.21 +macro __KERNEL_MODE__
1.22 +
1.23 +#ifndef __BUILD_AS_THUMB__
1.24 +ALWAYS_BUILD_AS_ARM
1.25 +#endif
1.26 +
1.27 +// Pick up any Variant or ASSP headers first
1.28 +#ifdef VariantNKernIncludePath
1.29 +macro __VARIANT_NKERN_INCLUDE_PATH_PRESENT__
1.30 +userinclude VariantNKernIncludePath
1.31 +systeminclude VariantNKernIncludePath
1.32 +#endif
1.33 +#ifdef AsspNKernIncludePath
1.34 +macro __ASSP_NKERN_INCLUDE_PATH_PRESENT__
1.35 +userinclude AsspNKernIncludePath
1.36 +systeminclude AsspNKernIncludePath
1.37 +#endif
1.38 +
1.39 +SYMBIAN_BASE_SYSTEMINCLUDE(nkern)
1.40 +
1.41 +#ifdef MARM
1.42 +SYMBIAN_BASE_SYSTEMINCLUDE(nkern/arm)
1.43 +#endif
1.44 +
1.45 +#ifdef X86
1.46 +SYMBIAN_BASE_SYSTEMINCLUDE(nkern/x86)
1.47 +#endif
1.48 +
1.49 +#ifdef WINS
1.50 +SYMBIAN_BASE_SYSTEMINCLUDE(nkern/win32)
1.51 +#endif
1.52 +
1.53 +OS_LAYER_SYSTEMINCLUDE_SYMBIAN
1.54 +
1.55 +#define NKERN_DIR nkern
1.56 +
1.57 +#ifdef STANDALONE_NANOKERNEL
1.58 +#ifndef ExtraNKernIncludePath
1.59 +#ifdef MARM
1.60 +#define ExtraNKernIncludePath SYMBIAN_OS_LAYER_PLATFORM_EXPORT_PATH(kernel/arm)
1.61 +#elif defined(X86)
1.62 +#define ExtraNKernIncludePath SYMBIAN_OS_LAYER_PLATFORM_EXPORT_PATH(kernel/x86)
1.63 +#endif
1.64 +#endif
1.65 +#ifdef ExtraNKernIncludePath
1.66 +userinclude ExtraNKernIncludePath
1.67 +systeminclude ExtraNKernIncludePath
1.68 +#endif
1.69 +#endif