sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // VG/OPENVG.H sl@0: // sl@0: // sl@0: sl@0: #ifndef __VG_OPENVG_H_ sl@0: #define __VG_OPENVG_H_ sl@0: sl@0: sl@0: /** sl@0: @file sl@0: @publishedAll sl@0: @released sl@0: sl@0: WARNING: File for internal and partner use ONLY. Compatibility is not guaranteed in future releases. sl@0: sl@0: __OPENVGHEADERS_USE_VG_1_1 sl@0: sl@0: The purpose of this define is to allow a staged migration from sl@0: OPENVG 1.0.1 to OPENVG 1.1. sl@0: sl@0: If __OPENVGHEADERS_USE_VG_1_1 is defined, then VG/openvg.h will redirect to sl@0: the OPENVG 1.1 API. sl@0: If __OPENVGHEADERS_USE_VG_1_1 is not defined, then VG/openvg.h sl@0: will redirect to the Symbian default version, currently OPENVG 1.0.1. sl@0: sl@0: SDK creators should place this #define in their OEM-specific system-wide sl@0: .hrh file in order to make client programs use OpenVG 1.1 headers. sl@0: Symbian product configurations never set this behaviour. sl@0: */ sl@0: #if defined(__OPENVGHEADERS_USE_VG_1_1) && !defined(OPENVG_RESTRICTED_TO_1_0) sl@0: #include sl@0: #else sl@0: #include sl@0: #endif sl@0: sl@0: #endif /* __VG_OPENVG_H_ */ sl@0: