mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-25 03:59:13 +02:00
* fixed properties
git-svn-id: trunk@13516 -
This commit is contained in:
parent
d34061d7e4
commit
b8ee63a715
12
.gitattributes
vendored
12
.gitattributes
vendored
@ -6465,11 +6465,11 @@ rtl/sparc/stringss.inc svneol=native#text/plain
|
||||
rtl/symbian/Makefile svneol=native#text/plain
|
||||
rtl/symbian/Makefile.fpc svneol=native#text/plain
|
||||
rtl/symbian/bindings/pbeexe.cpp -text
|
||||
rtl/symbian/buildrtl.pp -text
|
||||
rtl/symbian/buildrtl.pp svneol=native#text/plain
|
||||
rtl/symbian/symbian.pas -text
|
||||
rtl/symbian/symbianinc/e32def.inc -text
|
||||
rtl/symbian/symbianinc/e32err.inc -text
|
||||
rtl/symbian/symbianinc/e32std.inc -text
|
||||
rtl/symbian/symbianinc/e32def.inc svneol=native#text/plain
|
||||
rtl/symbian/symbianinc/e32err.inc svneol=native#text/plain
|
||||
rtl/symbian/symbianinc/e32std.inc svneol=native#text/plain
|
||||
rtl/symbian/sysdir.inc svneol=native#text/plain
|
||||
rtl/symbian/sysfile.inc svneol=native#text/plain
|
||||
rtl/symbian/sysheap.inc svneol=native#text/plain
|
||||
@ -6478,8 +6478,8 @@ rtl/symbian/sysosh.inc svneol=native#text/plain
|
||||
rtl/symbian/system.pp svneol=native#text/plain
|
||||
rtl/symbian/uiq.pas -text
|
||||
rtl/symbian/uiqclasses.pas -text
|
||||
rtl/symbian/uiqinc/qikapplication.inc -text
|
||||
rtl/symbian/uiqinc/qikapplicationoo.inc -text
|
||||
rtl/symbian/uiqinc/qikapplication.inc svneol=native#text/plain
|
||||
rtl/symbian/uiqinc/qikapplicationoo.inc svneol=native#text/plain
|
||||
rtl/ucmaps/8859-1.txt svneol=native#text/plain
|
||||
rtl/ucmaps/8859-10.txt svneol=native#text/plain
|
||||
rtl/ucmaps/8859-13.txt svneol=native#text/plain
|
||||
|
@ -1,11 +1,11 @@
|
||||
unit buildrtl;
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
ctypes, strings,
|
||||
symbian, uiq, uiqclasses;
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
unit buildrtl;
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
ctypes, strings,
|
||||
symbian, uiq, uiqclasses;
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,8 +1,8 @@
|
||||
{%MainUnit ../symbian.pas}
|
||||
|
||||
{ e32std.h header file }
|
||||
|
||||
{ User class }
|
||||
|
||||
function User_InfoPrint(aString: PChar): TInt; cdecl; external;
|
||||
|
||||
{%MainUnit ../symbian.pas}
|
||||
|
||||
{ e32std.h header file }
|
||||
|
||||
{ User class }
|
||||
|
||||
function User_InfoPrint(aString: PChar): TInt; cdecl; external;
|
||||
|
||||
|
@ -1,39 +1,39 @@
|
||||
{
|
||||
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 Symbian 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.
|
||||
|
||||
**********************************************************************}
|
||||
unit symbian;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
interface
|
||||
|
||||
uses ctypes;
|
||||
|
||||
{$include e32def.inc}
|
||||
{$include e32err.inc}
|
||||
{.$include e32const.inc}
|
||||
{.$include e32cmn.inc}
|
||||
{.$include e32std.inc}
|
||||
|
||||
{ e32std.h header file }
|
||||
|
||||
{ User class }
|
||||
|
||||
function User_InfoPrint(aString: PChar): TInt; cdecl; external;
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
|
||||
{
|
||||
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 Symbian 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.
|
||||
|
||||
**********************************************************************}
|
||||
unit symbian;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
interface
|
||||
|
||||
uses ctypes;
|
||||
|
||||
{$include e32def.inc}
|
||||
{$include e32err.inc}
|
||||
{.$include e32const.inc}
|
||||
{.$include e32cmn.inc}
|
||||
{.$include e32std.inc}
|
||||
|
||||
{ e32std.h header file }
|
||||
|
||||
{ User class }
|
||||
|
||||
function User_InfoPrint(aString: PChar): TInt; cdecl; external;
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
|
||||
|
@ -1,39 +1,39 @@
|
||||
{
|
||||
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 Symbian 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.
|
||||
|
||||
**********************************************************************}
|
||||
unit symbian;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
interface
|
||||
|
||||
uses ctypes;
|
||||
|
||||
{$include e32def.inc}
|
||||
{$include e32err.inc}
|
||||
{.$include e32const.inc}
|
||||
{.$include e32cmn.inc}
|
||||
{.$include e32std.inc}
|
||||
|
||||
{ e32std.h header file }
|
||||
|
||||
{ User class }
|
||||
|
||||
function User_InfoPrint(aString: PChar): TInt; cdecl; external;
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
|
||||
{
|
||||
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 Symbian 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.
|
||||
|
||||
**********************************************************************}
|
||||
unit symbian;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
interface
|
||||
|
||||
uses ctypes;
|
||||
|
||||
{$include e32def.inc}
|
||||
{$include e32err.inc}
|
||||
{.$include e32const.inc}
|
||||
{.$include e32cmn.inc}
|
||||
{.$include e32std.inc}
|
||||
|
||||
{ e32std.h header file }
|
||||
|
||||
{ User class }
|
||||
|
||||
function User_InfoPrint(aString: PChar): TInt; cdecl; external;
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user