home *** CD-ROM | disk | FTP | other *** search
- /*================================================*/
- /* TVOSUB.C */
- /* */
- /* (c) Copyright 1988 Ralf Brown */
- /* All Rights Reserved */
- /* May be freely copied for noncommercial use, */
- /* provided that this copyright notice remains */
- /* intact and any changes are indicated in the */
- /* comment blocks preceding functions */
- /*================================================*/
-
- #include "tvapi.h"
-
- /*================================================*/
- /* TVobq_remove remove an object from the queue */
- /* Ralf Brown 5/6/88 */
- /*================================================*/
-
- void pascal TVobq_remove(OBJECT obq, OBJECT item)
- {
- PARMLIST1 p ;
-
- p.num_args = 1 ;
- p.arg[0] = (DWORD) item ;
- TVsendmsg(SUBFROM_MSG, obq?TOS:OBJQME, obq, (PARMLIST *)&p) ;
- }
-
- /* End of TVOCLOSE.C */
-
-