home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / misc / emu / AROSdev.lha / AROS / workbench / libs / iffparse / stophook.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-03  |  438 b   |  25 lines

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: stophook.c,v 1.1 1997/02/03 16:44:29 digulla Exp $
  4.  
  5.     Desc: Handler installed by StopChunk() and StopOnExit()
  6.     Lang: English.
  7. */
  8. #include "iffparse_intern.h"
  9.  
  10.  
  11. /***************************/
  12. /* StopChunk entry-handler */
  13. /***************************/
  14.  
  15. LONG StopFunc
  16. (
  17.     struct Hook *hook,
  18.      APTR         obj, 
  19.      APTR         p
  20. )
  21. {
  22.     return (IFF_RETURN2CLIENT);
  23. }
  24.  
  25.