fpasync.pp 956 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. $Id$
  3. fpAsync: Asynchronous event management for Free Pascal
  4. Copyright (C) 2001-2002 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. {$H+}
  16. interface
  17. uses SysUtils, Classes, libasync;
  18. type
  19. TNotifyEvent = procedure(Sender: TObject) of object;
  20. {$INCLUDE fpasynch.inc}
  21. implementation
  22. {$INCLUDE fpasync.inc}
  23. end.
  24. {
  25. $Log$
  26. Revision 1.3 2002-09-15 15:45:38 sg
  27. * Added stream line reader classes
  28. Revision 1.2 2002/09/07 15:42:57 peter
  29. * old logs removed and tabs fixed
  30. Revision 1.1 2002/01/29 17:55:02 peter
  31. * splitted to base and extra
  32. }