fpasync.pp 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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.1 2002-01-29 17:55:02 peter
  26. * splitted to base and extra
  27. Revision 1.2 2001/12/11 17:45:28 marco
  28. * was only commited to fixes.
  29. Revision 1.1.2.2 2001/11/16 12:51:41 sg
  30. * Now different handlers for available data and space in write buffer can
  31. be set
  32. * LOTS of bugfixes in the implementation
  33. * fpAsync now has a write buffer class (a read buffer class for reading
  34. line by line will be included in the next release)
  35. Revision 1.1.2.1 2001/09/08 15:43:24 sg
  36. * First public version
  37. }