mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 05:29:34 +02:00
40 lines
1.6 KiB
PHP
40 lines
1.6 KiB
PHP
{
|
|
$Id$
|
|
This file is part of the Free Pascal run time library.
|
|
Copyright (c) 2000 by Florian Klaempfl
|
|
member of the Free Pascal development team.
|
|
|
|
This file contains external definitions (which map to aliases
|
|
of functions which are later implemented) so that they can
|
|
be called before their implementation is known. We can't use
|
|
forward definitions, because there's a bug which causes all
|
|
sorts of trouble if you you first declare a procedure as
|
|
forward, then call it and then implement it using an
|
|
"external name 'bla'" where 'bla' is a public alias of a
|
|
procedure defined after the call to the forward defined
|
|
procedure.
|
|
|
|
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.
|
|
|
|
**********************************************************************
|
|
}
|
|
|
|
{ export for internal usage }
|
|
Procedure int_Finalize (Data,TypeInfo: Pointer); [external name 'FPC_FINALIZE'];
|
|
Procedure int_Addref (Data,TypeInfo : Pointer);saveregisters; [external name 'FPC_ADDREF'];
|
|
Procedure int_DecRef (Data, TypeInfo : Pointer);saveregisters;[external name 'FPC_DECREF'];
|
|
Procedure int_Initialize (Data,TypeInfo: Pointer); [external name 'FPC_INITIALIZE'];
|
|
procedure int_FinalizeArray(data,typeinfo : pointer;count,size : longint); [external name 'FPC_FINALIZEARRAY'];
|
|
|
|
{
|
|
$Log$
|
|
Revision 1.2 2002-09-07 15:07:44 peter
|
|
* old logs removed and tabs fixed
|
|
|
|
}
|