home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / TextEditors&Viewers / Texteditors / FFRED10.LHA / fpl / KillNotify.FPL < prev    next >
Encoding:
Text File  |  1994-09-22  |  281 b   |  11 lines

  1. int export KilledNotify_hook(int ID)
  2. {
  3.   string port = ReadInfo("_notifyport", ID);
  4.   if(strlen(port)) {
  5.     ARexxSend(port, "!"); /* just send anything, don't wait for reply! */
  6.   }
  7. }
  8.  
  9. ConstructInfo("_notifyport", "", "", "LS", "", 0, 0);
  10. Hook("BufferKill", "KilledNotify_hook");
  11.