mirror of
https://github.com/deadw00d/AROS.git
synced 2025-12-08 14:34:41 +00:00
53 lines
976 B
C
53 lines
976 B
C
/*
|
|
Copyright (C) 2010-2019, The AROS Development Team. All rights reserved.
|
|
$Id: createpipescreen.c 48224 2013-10-07 14:30:43Z neil $
|
|
*/
|
|
|
|
#include <aros/debug.h>
|
|
|
|
#include <proto/utility.h>
|
|
#include <proto/intuition.h>
|
|
|
|
#include <hidd/gfx.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "gallium_intern.h"
|
|
|
|
#undef HiddGalliumAttrBase
|
|
#define HiddGalliumAttrBase GB(GalliumBase)->galliumAttrBase
|
|
|
|
/*****************************************************************************
|
|
|
|
NAME */
|
|
|
|
AROS_LH1(void, DestroyPipe,
|
|
|
|
/* SYNOPSIS */
|
|
AROS_LHA(PipeHandle_t, pipe, A0),
|
|
|
|
/* LOCATION */
|
|
struct Library *, GalliumBase, 6, Gallium)
|
|
|
|
/* FUNCTION
|
|
Destroys a peviously created pipe.
|
|
|
|
INPUTS
|
|
pipe - a pipe handle created using CreatePipe().
|
|
|
|
RESULT
|
|
|
|
BUGS
|
|
|
|
INTERNALS
|
|
|
|
*****************************************************************************/
|
|
{
|
|
AROS_LIBFUNC_INIT
|
|
|
|
OOP_DisposeObject((OOP_Object *)pipe);
|
|
|
|
AROS_LIBFUNC_EXIT
|
|
}
|
|
|