Check for SYS/GL during library init. Reason is that
[AROS.git] / workbench / libs / cgxvideo / DetachVLayer.c
blobe7d0014e17d2d3a45a66ff019bfc8ef79361703b
1 /*
2 Copyright © 1995-2010, The AROS Development Team. All rights reserved.
3 $Id$
4 */
5 #include <aros/debug.h>
7 #include "cgxvideo_intern.h"
9 /*****************************************************************************
11 NAME */
12 #include <clib/cgxvideo_protos.h>
14 AROS_LH1(ULONG, DetachVLayer,
16 /* SYNOPSIS */
17 AROS_LHA(struct VLayerHandle *, VLayerHandle, A0),
19 /* LOCATION */
20 struct Library *, CGXVideoBase, 8, Cgxvideo)
22 /* FUNCTION
23 Detaches a videolayer from a given window. As a result, the video
24 overlay should now be unlinked from the window and the original
25 contents of the window are visible now.
27 INPUTS
28 VLayerHandle - pointer to a previously created videolayer handle
30 RESULT
31 result - 0 if videolayer could be detached from the window
33 NOTES
35 EXAMPLE
37 BUGS
38 This function is unimplemented.
40 SEE ALSO
41 AttachVLayerTagList()
43 INTERNALS
45 HISTORY
47 *****************************************************************************/
49 AROS_LIBFUNC_INIT
51 aros_print_not_implemented ("DetachVLayer");
52 return TRUE;
54 AROS_LIBFUNC_EXIT
55 } /* DetachVLayer */