mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 13:49:39 +02:00
* TThreadEntry corrected (needed for FCL)
This commit is contained in:
parent
a5f9735595
commit
fd9191a28d
@ -137,8 +137,8 @@ type TByteArray=array[0..$fff0] of byte;
|
|||||||
|
|
||||||
****************************************************************************}
|
****************************************************************************}
|
||||||
|
|
||||||
type TThreadEntry=procedure(Param:pointer); cdecl;
|
type TThreadEntry = function (Param: pointer): longint; cdecl;
|
||||||
ThreadEntry=TThreadEntry;
|
ThreadEntry = TThreadEntry;
|
||||||
|
|
||||||
|
|
||||||
const dtSuspended =1; {Thread is started suspended instead of
|
const dtSuspended =1; {Thread is started suspended instead of
|
||||||
@ -3949,7 +3949,10 @@ external 'DOSCALLS' index 582;
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.5 2000-10-26 20:07:19 hajny
|
Revision 1.6 2000-12-21 21:12:43 hajny
|
||||||
|
* TThreadEntry corrected (needed for FCL)
|
||||||
|
|
||||||
|
Revision 1.5 2000/10/26 20:07:19 hajny
|
||||||
* DosDevIOCtl prototype fixed, cdecl removed in DosSetFilePtr helper declaration
|
* DosDevIOCtl prototype fixed, cdecl removed in DosSetFilePtr helper declaration
|
||||||
|
|
||||||
Revision 1.4 2000/10/08 18:40:18 hajny
|
Revision 1.4 2000/10/08 18:40:18 hajny
|
||||||
|
Loading…
Reference in New Issue
Block a user