123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {
- $Id$
- fpAsync: Asynchronous event management for Free Pascal
- Copyright (C) 2001-2002 by
- Areca Systems GmbH / Sebastian Guenther, [email protected]
- Unix implementation
- See the file COPYING.FPC, included in this distribution,
- for details about the copyright.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- }
- unit fpAsync;
- {$MODE objfpc}
- {$H+}
- interface
- uses SysUtils, Classes, libasync;
- type
- TNotifyEvent = procedure(Sender: TObject) of object;
- {$INCLUDE fpasynch.inc}
- implementation
- {$INCLUDE fpasync.inc}
- end.
- {
- $Log$
- Revision 1.3 2002-09-15 15:45:38 sg
- * Added stream line reader classes
- Revision 1.2 2002/09/07 15:42:57 peter
- * old logs removed and tabs fixed
- Revision 1.1 2002/01/29 17:55:02 peter
- * splitted to base and extra
- }
|