Autodoc formatting fixes.
[AROS.git] / arch / all-hosted / hostlib / dropinterface.c
blob90632f0068a42c5146e81eef703e467cd140e01d
1 #include <proto/exec.h>
3 /*****************************************************************************
5 NAME */
6 #include <proto/hostlib.h>
8 AROS_LH1I(void, HostLib_DropInterface,
10 /* SYNOPSIS */
11 AROS_LHA(APTR *, interface, A0),
13 /* LOCATION */
14 APTR , HostLibBase, 6, HostLib)
16 /* FUNCTION
17 Free an array of symbol values obtained by HostLib_GetInterface()
19 INPUTS
20 interface - A pointer to values array
22 RESULT
23 None
25 NOTES
26 This function appeared in v2 of hostlib.resource.
28 EXAMPLE
30 BUGS
32 SEE ALSO
33 HostLib_GetInterface()
35 INTERNALS
37 *****************************************************************************/
39 AROS_LIBFUNC_INIT
41 FreeVec(interface);
43 AROS_LIBFUNC_EXIT