mirror of
https://github.com/deadw00d/AROS.git
synced 2025-12-07 22:14:08 +00:00
51 lines
867 B
C
51 lines
867 B
C
/*
|
|
Copyright (C) 1995-2008, The AROS Development Team. All rights reserved.
|
|
|
|
Desc: Bullet function ObtainInfoA()
|
|
*/
|
|
|
|
#include <aros/libcall.h>
|
|
#include <proto/bullet.h>
|
|
|
|
/*****************************************************************************
|
|
|
|
NAME */
|
|
|
|
AROS_LH2(ULONG, ObtainInfoA,
|
|
|
|
/* SYNOPSIS */
|
|
AROS_LHA(struct GlyphEngine *, glyphEngine, A0),
|
|
AROS_LHA(struct TagItem *, tagList, A1),
|
|
|
|
/* LOCATION */
|
|
struct Library *, BulletBase, 8, Bullet)
|
|
|
|
/* FUNCTION
|
|
|
|
INPUTS
|
|
|
|
RESULT
|
|
|
|
NOTES
|
|
|
|
EXAMPLE
|
|
|
|
BUGS
|
|
|
|
SEE ALSO
|
|
|
|
INTERNALS
|
|
|
|
This interface is implemented in freetype2.library.
|
|
See /workbench/libs/freetype/src/aros.
|
|
|
|
HISTORY
|
|
|
|
*****************************************************************************/
|
|
{
|
|
AROS_LIBFUNC_INIT
|
|
|
|
AROS_LIBFUNC_EXIT
|
|
|
|
} /* ObtainInfoA */
|