1 {
2     This file is part of the Free Pascal run time library.
3     Copyright (c) 2007 by contributors of the Free Pascal Compiler
4 
5     Symbian OS unit that adds common types, constants and functions
6     for the UIQ API
7 
8     See the file COPYING.FPC, included in this distribution,
9     for details about the copyright.
10 
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14 
15  **********************************************************************}
16 unit uiq;
17 
18 {$mode objfpc}{$H+}
19 
20 interface
21 
22 uses ctypes;
23 
24 {$include e32def.inc}
25 {$include e32err.inc}
26 {.$include e32const.inc}
27 {.$include e32cmn.inc}
28 {$include e32std.inc}
29 
30 
31 implementation
32 
33 end.
34 
35