asyncioh.inc 716 B

12345678910111213141516171819202122232425262728293031
  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.1 2000-02-18 23:14:10 michael
  21. + Initial implementation
  22. }