sl@0: /* sl@0: * Copyright (c) 1997-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: * Header GDR.H sl@0: * sl@0: */ sl@0: sl@0: sl@0: #ifndef __GDR_H__ sl@0: #define __GDR_H__ sl@0: sl@0: /** sl@0: @file sl@0: @publishedAll sl@0: */ sl@0: sl@0: /** WARNING: Typedefs for internal use ONLY. Compatibility is not guaranteed in future releases. */ sl@0: typedef char chardim; // used for character dimensions, can be increased to short int (2 bytes) sl@0: /** WARNING: Typedefs for internal use ONLY. Compatibility is not guaranteed in future releases. */ sl@0: typedef unsigned char uint8; // used for values which are written as unsigned short int sl@0: /** WARNING: Typedefs for internal use ONLY. Compatibility is not guaranteed in future releases. */ sl@0: typedef unsigned short int uint16; // used for values which are written as unsigned short int sl@0: /** WARNING: Typedefs for internal use ONLY. Compatibility is not guaranteed in future releases. */ sl@0: typedef signed long int32; // used for file signature sl@0: /** WARNING: Typedefs for internal use ONLY. Compatibility is not guaranteed in future releases. */ sl@0: typedef unsigned long uint32; sl@0: /** WARNING: Typedefs for internal use ONLY. Compatibility is not guaranteed in future releases. */ sl@0: typedef signed int uid; sl@0: /** WARNING: Typedefs for internal use ONLY. Compatibility is not guaranteed in future releases. */ sl@0: typedef uint8 boolean; sl@0: sl@0: /** WARNING: Constants for internal use ONLY. Compatibility is not guaranteed in future releases. */ sl@0: const boolean efalse = 0; sl@0: /** WARNING: Constants for internal use ONLY. Compatibility is not guaranteed in future releases. */ sl@0: const boolean etrue = 1; sl@0: sl@0: /** WARNING: Constants for internal use ONLY. Compatibility is not guaranteed in future releases. */ sl@0: const int MaxLineLen = 256; // maximum line length sl@0: /** WARNING: Constants for internal use ONLY. Compatibility is not guaranteed in future releases. */ sl@0: const int KUndefinedInteger=0x7fff; sl@0: sl@0: /** WARNING: For internal use ONLY. Compatibility is not guaranteed in future releases. */ sl@0: #if defined(__VC32__) sl@0: #define IMPORT_C __declspec(dllexport) sl@0: #define EXPORT_C __declspec(dllexport) sl@0: #else sl@0: #define IMPORT_C sl@0: #define EXPORT_C sl@0: #endif sl@0: sl@0: #endif