asyncioh.inc 627 B

1234567891011121314151617181920212223242526
  1. {
  2. This file is part of the Free Component Library (FCL)
  3. Copyright (c) 1999-2000 by the Free Pascal development team
  4. See the file COPYING.FPC, included in this distribution,
  5. for details about the copyright.
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. **********************************************************************}
  10. uses
  11. Unix,
  12. classes;
  13. const
  14. MaxHandle = SizeOf(TFDSet) * 8 - 1;
  15. Type
  16. TIOData = Record
  17. ReadMap, WriteMap: TFDSet;
  18. end;