Minor fixes to comments.
[AROS.git] / rom / graphics / adddisplayinfodata.c
blob0bc16189ecec94f22aed352dce323abc04b00bf2
1 /*
2 Copyright © 1995-2011, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Add a display mode information to the database
6 Lang: english
7 */
9 #include <aros/libcall.h>
10 #include <graphics/displayinfo.h>
11 #include <graphics/gfxbase.h>
14 * This function was private in AmigaOS(tm) and is used by display drivers
15 * in DEVS:Monitors to populate display mode database.
16 * AROS uses its own interface with display drivers and doesn't need this function.
17 * It is kept only for binary compatibility with m68k Workbench disks.
20 AROS_LH5(ULONG, AddDisplayInfoData,
21 AROS_LHA(DisplayInfoHandle, handle, A0),
22 AROS_LHA(UBYTE *, buf, A1),
23 AROS_LHA(ULONG, size, D0),
24 AROS_LHA(ULONG, tagID, D1),
25 AROS_LHA(ULONG, ID, D2),
26 struct GfxBase *, GfxBase, 124, Graphics)
28 AROS_LIBFUNC_INIT
30 return 0;
32 AROS_LIBFUNC_EXIT