asyncioh.inc 959 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 linux,classes;
  12. const
  13. MaxHandle = SizeOf(TFDSet) * 8 - 1;
  14. Type
  15. TIOData = Record
  16. ReadMap, WriteMap: TFDSet;
  17. end;
  18. {
  19. $Log$
  20. Revision 1.2 2000-10-26 22:30:21 peter
  21. * freebsd update
  22. * classes.rst
  23. Revision 1.1.2.1 2000/10/25 12:36:24 marco
  24. * Split up Freebsd/Unix/Linux for Fixes FCL
  25. Revision 1.1 2000/07/13 06:31:32 michael
  26. + Initial import
  27. Revision 1.1 2000/02/18 23:14:10 michael
  28. + Initial implementation
  29. }