add place-holder directory for the a3000 wd533c93 scsi controller implementation.
[AROS.git] / workbench / libs / gallium / destroypipe.c
blob8dd4afde3760347ebefdf7d9e5090f636b8223a6
1 /*
2 Copyright © 2010-2019, The AROS Development Team. All rights reserved.
3 $Id: createpipescreen.c 48224 2013-10-07 14:30:43Z neil $
4 */
6 #include <aros/debug.h>
8 #include <proto/utility.h>
9 #include <proto/intuition.h>
11 #include <hidd/gfx.h>
13 #include <stdio.h>
15 #include "gallium_intern.h"
17 #undef HiddGalliumAttrBase
18 #define HiddGalliumAttrBase GB(GalliumBase)->galliumAttrBase
20 /*****************************************************************************
22 NAME */
24 AROS_LH1(void, DestroyPipe,
26 /* SYNOPSIS */
27 AROS_LHA(PipeHandle_t, pipe, A0),
29 /* LOCATION */
30 struct Library *, GalliumBase, 6, Gallium)
32 /* FUNCTION
33 Destroys a peviously created pipe.
35 INPUTS
36 pipe - a pipe handle created using CreatePipe().
38 RESULT
40 BUGS
42 INTERNALS
44 *****************************************************************************/
46 AROS_LIBFUNC_INIT
48 OOP_DisposeObject((OOP_Object *)pipe);
50 AROS_LIBFUNC_EXIT