home *** CD-ROM | disk | FTP | other *** search
/ MACD 4 / MACD4.iso / Emulatory / AROS / devs / cdinputhandler.c next >
Encoding:
C/C++ Source or Header  |  1978-03-06  |  1.2 KB  |  61 lines

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: cdinputhandler.c,v 1.2 1996/10/24 15:50:21 aros Exp $
  4.     $Log: cdinputhandler.c,v $
  5.     Revision 1.2  1996/10/24 15:50:21  aros
  6.     Use the official AROS macros over the __AROS versions.
  7.  
  8.     Revision 1.1  1996/08/23 17:32:23  digulla
  9.     Implementation of the console.device
  10.  
  11.  
  12.     Desc:
  13.     Lang: english
  14. */
  15.  
  16. /*****************************************************************************
  17.  
  18.     NAME */
  19.     #include <exec/libraries.h>
  20.     #include <devices/inputevent.h>
  21.     #include <clib/console_protos.h>
  22.  
  23.     AROS_LH2(struct InputEvent *, CDInputHandler,
  24.  
  25. /*  SYNOPSIS */
  26.     AROS_LHA(struct InputEvent *, events, A0),
  27.     AROS_LHA(struct Library    *, consoleDevice, A1),
  28.  
  29. /*  LOCATION */
  30.     struct Library *, ConsoleDevice, 7, Console)
  31.  
  32. /*  FUNCTION
  33.  
  34.     INPUTS
  35.  
  36.     RESULT
  37.  
  38.     NOTES
  39.  
  40.     EXAMPLE
  41.  
  42.     BUGS
  43.  
  44.     SEE ALSO
  45.  
  46.     INTERNALS
  47.  
  48.     HISTORY
  49.     29-10-95    digulla automatically created from
  50.                 console_lib.fd and clib/console_protos.h
  51.  
  52. *****************************************************************************/
  53. {
  54.     AROS_LIBFUNC_INIT
  55.     AROS_LIBBASE_EXT_DECL(struct Library *,ConsoleDevice)
  56.  
  57.     return NULL;
  58.  
  59.     AROS_LIBFUNC_EXIT
  60. } /* CDInputHandler */
  61.