tthread.inc 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. This file is part of the Free Component Library (FCL)
  3. Copyright (c) 1999-2000 by the Free Pascal development team
  4. See the file COPYING.FPC, included in this distribution,
  5. for details about the copyright.
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. **********************************************************************}
  10. {****************************************************************************}
  11. {* TThread *}
  12. {****************************************************************************}
  13. xxxx
  14. procedure TThread.CallOnTerminate;
  15. begin
  16. end;
  17. function TThread.GetPriority: TThreadPriority;
  18. begin
  19. GetPriority:=tpNormal;
  20. end;
  21. procedure TThread.SetPriority(Value: TThreadPriority);
  22. begin
  23. end;
  24. procedure TThread.SetSuspended(Value: Boolean);
  25. begin
  26. end;
  27. procedure TThread.DoTerminate;
  28. begin
  29. end;
  30. procedure TThread.SysCreate(CreateSuspended: Boolean; const StackSize: SizeUInt);
  31. begin
  32. {IsMultiThread := TRUE; }
  33. end;
  34. procedure TThread.SysDestroy;
  35. begin
  36. end;
  37. procedure TThread.Resume;
  38. begin
  39. end;
  40. procedure TThread.Suspend;
  41. begin
  42. end;
  43. function TThread.WaitFor: Integer;
  44. begin
  45. WaitFor:=0;
  46. end;