asyncioh.inc 772 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. $Id$
  3. This file is part of the Free Component Library (FCL)
  4. Copyright (c) 1999-2000 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. uses
  12. {$ifdef ver1_0}
  13. Linux,
  14. {$else}
  15. Unix,
  16. {$endif}
  17. classes;
  18. const
  19. MaxHandle = SizeOf(TFDSet) * 8 - 1;
  20. Type
  21. TIOData = Record
  22. ReadMap, WriteMap: TFDSet;
  23. end;
  24. {
  25. $Log$
  26. Revision 1.5 2002-09-07 15:15:29 peter
  27. * old logs removed and tabs fixed
  28. }