First public contribution.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
28 /** WARNING: Typedefs for internal use ONLY. Compatibility is not guaranteed in future releases. */
29 typedef char chardim; // used for character dimensions, can be increased to short int (2 bytes)
30 /** WARNING: Typedefs for internal use ONLY. Compatibility is not guaranteed in future releases. */
31 typedef unsigned char uint8; // used for values which are written as unsigned short int
32 /** WARNING: Typedefs for internal use ONLY. Compatibility is not guaranteed in future releases. */
33 typedef unsigned short int uint16; // used for values which are written as unsigned short int
34 /** WARNING: Typedefs for internal use ONLY. Compatibility is not guaranteed in future releases. */
35 typedef signed long int32; // used for file signature
36 /** WARNING: Typedefs for internal use ONLY. Compatibility is not guaranteed in future releases. */
37 typedef unsigned long uint32;
38 /** WARNING: Typedefs for internal use ONLY. Compatibility is not guaranteed in future releases. */
39 typedef signed int uid;
40 /** WARNING: Typedefs for internal use ONLY. Compatibility is not guaranteed in future releases. */
41 typedef uint8 boolean;
43 /** WARNING: Constants for internal use ONLY. Compatibility is not guaranteed in future releases. */
44 const boolean efalse = 0;
45 /** WARNING: Constants for internal use ONLY. Compatibility is not guaranteed in future releases. */
46 const boolean etrue = 1;
48 /** WARNING: Constants for internal use ONLY. Compatibility is not guaranteed in future releases. */
49 const int MaxLineLen = 256; // maximum line length
50 /** WARNING: Constants for internal use ONLY. Compatibility is not guaranteed in future releases. */
51 const int KUndefinedInteger=0x7fff;
53 /** WARNING: For internal use ONLY. Compatibility is not guaranteed in future releases. */
55 #define IMPORT_C __declspec(dllexport)
56 #define EXPORT_C __declspec(dllexport)