mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:18:30 +02:00
41 lines
923 B
ObjectPascal
41 lines
923 B
ObjectPascal
{
|
|
This file is part of the Free Pascal run time library.
|
|
Copyright (c) 2007 by contributors of the Free Pascal Compiler
|
|
|
|
Symbian OS unit that adds common types, constants and functions
|
|
for the UIQ API
|
|
|
|
See the file COPYING.FPC, included in this distribution,
|
|
for details about the copyright.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
**********************************************************************}
|
|
{$IFNDEF FPC_DOTTEDUNITS}
|
|
unit uiq;
|
|
{$ENDIF FPC_DOTTEDUNITS}
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
{$IFDEF FPC_DOTTEDUNITS}
|
|
uses System.CTypes;
|
|
{$ELSE FPC_DOTTEDUNITS}
|
|
uses ctypes;
|
|
{$ENDIF FPC_DOTTEDUNITS}
|
|
|
|
{$include e32def.inc}
|
|
{$include e32err.inc}
|
|
{.$include e32const.inc}
|
|
{.$include e32cmn.inc}
|
|
{$include e32std.inc}
|
|
|
|
|
|
implementation
|
|
|
|
end.
|
|
|