thread.inc 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. $Id$
  3. This file is part of the Free Component Library (FCL)
  4. Copyright (c) 1998 by the Free Pascal development team
  5. See the file COPYING.FPC, included in this distribution,
  6. for details about the copyright.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. **********************************************************************}
  11. {****************************************************************************}
  12. {* TThread *}
  13. {****************************************************************************}
  14. procedure TThread.CallOnTerminate;
  15. begin
  16. end;
  17. function TThread.GetPriority: TThreadPriority;
  18. begin
  19. end;
  20. procedure TThread.SetPriority(Value: TThreadPriority);
  21. begin
  22. end;
  23. procedure TThread.SetSuspended(Value: Boolean);
  24. begin
  25. end;
  26. procedure TThread.DoTerminate;
  27. begin
  28. end;
  29. procedure TThread.Synchronize(Method: TThreadMethod);
  30. begin
  31. end;
  32. constructor TThread.Create(CreateSuspended: Boolean);
  33. begin
  34. end;
  35. destructor TThread.Destroy;
  36. begin
  37. end;
  38. procedure TThread.Resume;
  39. begin
  40. end;
  41. procedure TThread.Suspend;
  42. begin
  43. end;
  44. procedure TThread.Terminate;
  45. begin
  46. end;
  47. function TThread.WaitFor: Integer;
  48. begin
  49. end;
  50. {
  51. $Log$
  52. Revision 1.1 1998-05-04 14:30:12 michael
  53. * Split file according to Class; implemented dummys for all methods, so unit compiles.
  54. }