fpasync.pp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. $Id$
  3. fpAsync: Asynchronous event management for Free Pascal
  4. Copyright (C) 2001 by
  5. Areca Systems GmbH / Sebastian Guenther, [email protected]
  6. Unix implementation
  7. See the file COPYING.FPC, included in this distribution,
  8. for details about the copyright.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. }
  13. unit fpAsync;
  14. {$MODE objfpc}
  15. interface
  16. uses Classes, libasync;
  17. type
  18. TNotifyEvent = procedure(Sender: TObject) of object;
  19. {$INCLUDE fpasynch.inc}
  20. implementation
  21. {$INCLUDE fpasync.inc}
  22. end.
  23. {
  24. $Log$
  25. Revision 1.2 2001-12-11 17:45:28 marco
  26. * was only commited to fixes.
  27. Revision 1.1.2.2 2001/11/16 12:51:41 sg
  28. * Now different handlers for available data and space in write buffer can
  29. be set
  30. * LOTS of bugfixes in the implementation
  31. * fpAsync now has a write buffer class (a read buffer class for reading
  32. line by line will be included in the next release)
  33. Revision 1.1.2.1 2001/09/08 15:43:24 sg
  34. * First public version
  35. }