1
0
mirror of https://github.com/deadw00d/AROS.git synced 2025-12-08 14:34:41 +00:00
Files
AROS-v0/workbench/libs/reqtools/stubs/rtpaletterequest.c
Matthias Rustler a58f5dc15c copyright header fixed
copyright sign unified to (C)
$Id$ removed
Lang: removed
2021-05-02 13:46:08 +02:00

54 lines
880 B
C

/*
Copyright (C) 1995-2001, The AROS Development Team. All rights reserved.
Desc:
*/
#define AROS_TAGRETURNTYPE LONG
#include <utility/tagitem.h>
#include <libraries/reqtools.h>
#define NO_INLINE_STDARG /* turn off inline def */
#include <proto/reqtools.h>
extern struct ReqToolsBase * ReqToolsBase;
/*****************************************************************************
NAME */
LONG rtPaletteRequest (
/* SYNOPSIS */
const char *title,
struct rtReqInfo *reqinfo,
Tag tag1,
...)
/* FUNCTION
INPUTS
RESULT
NOTES
EXAMPLE
BUGS
SEE ALSO
INTERNALS
HISTORY
*****************************************************************************/
{
AROS_SLOWSTACKTAGS_PRE(tag1)
retval = rtPaletteRequestA(title, reqinfo, AROS_SLOWSTACKTAGS_ARG(tag1));
AROS_SLOWSTACKTAGS_POST
} /* rtPaletteRequest */