systhrdh.inc 784 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 1999-2001 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. {$ifdef HASINTF}
  12. type
  13. IReadWriteSync = interface
  14. procedure BeginRead;
  15. procedure EndRead;
  16. procedure BeginWrite;
  17. procedure EndWrite;
  18. end;
  19. {$endif HASINTF}
  20. {
  21. $Log$
  22. Revision 1.1 2001-08-22 21:19:16 florian
  23. + some new stuff of D6/Kylix added
  24. }