--- libwww/Library/src/HTNet.c 1996/08/05 17:22:39 2.72 +++ libwww/Library/src/HTNet.c 1996/08/08 02:16:53 2.73 @@ -3,7 +3,7 @@ ** ** (c) COPYRIGHT MIT 1995. ** Please first read the full copyright statement in the file COPYRIGH. -** @(#) $Id: HTNet.c,v 2.72 1996/08/05 17:22:39 frystyk Exp $ +** @(#) $Id: HTNet.c,v 2.73 1996/08/08 02:16:53 frystyk Exp $ ** ** This is the implementation of the internal library multithreading ** functions. This includes an interrupt handler and a event loop. @@ -219,6 +219,11 @@ PUBLIC BOOL HTNetCall_addBefore (HTNetCa return HTNetCall_add(HTBefore, cbf, param, status); } +PUBLIC BOOL HTNetCall_deleteBefore (HTNetCallback * cbf) +{ + return HTNetCall_delete(HTBefore, cbf); +} + /* ** Global set of callback functions AFTER the request is issued ** list can be NULL @@ -256,6 +261,11 @@ PUBLIC BOOL HTNetCall_addAfter (HTNetCal return HTNetCall_add(HTAfter, cbf, param, status); } +PUBLIC BOOL HTNetCall_deleteAfter (HTNetCallback * cbf) +{ + return HTNetCall_delete(HTBefore, cbf); +} + /* ------------------------------------------------------------------------- */ /* Request Queue */ /* ------------------------------------------------------------------------- */