asyncioh.inc 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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.4 2001-04-08 11:26:03 peter
  27. * update so it can be compiled by both 1.0.x and 1.1
  28. Revision 1.3 2001/01/21 20:45:09 marco
  29. * Rename fest II FCL version.
  30. Revision 1.2 2000/10/26 22:30:21 peter
  31. * freebsd update
  32. * classes.rst
  33. Revision 1.1.2.1 2000/10/25 12:36:24 marco
  34. * Split up Freebsd/Unix/Linux for Fixes FCL
  35. Revision 1.1 2000/07/13 06:31:32 michael
  36. + Initial import
  37. Revision 1.1 2000/02/18 23:14:10 michael
  38. + Initial implementation
  39. }