home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / misc / emu / AROSdev.lha / AROS / rom / devs / cdinputhandler.c next >
C/C++ Source or Header  |  1997-01-27  |  1KB  |  54 lines

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