Forgotten changes that should have been part of the r45368 64-bit fix.
[AROS.git] / rom / devs / input / peekqualifier.c
blob16f8fa02c6a281a54937de8251da12eace560279
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Input device function PeekQualifier()
6 Lang: english
7 */
8 #include "input_intern.h"
10 /*****************************************************************************
12 NAME */
13 #include <clib/input_protos.h>
15 AROS_LH0(UWORD, PeekQualifier,
17 /* SYNOPSIS */
18 /* void */
20 /* LOCATION */
21 struct Device *, InputBase, 7, Input)
23 /* FUNCTION
25 INPUTS
27 RESULT
29 NOTES
31 EXAMPLE
33 BUGS
35 SEE ALSO
37 INTERNALS
39 HISTORY
40 27-11-96 digulla automatically created from
41 input_lib.fd and clib/input_protos.h
43 *****************************************************************************/
45 AROS_LIBFUNC_INIT
47 return ((struct inputbase *)InputBase)->ActQualifier;
49 AROS_LIBFUNC_EXIT
50 } /* PeekQualifier */