home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / OTL-MC6.DMS / in.adf / incl.lha / INCLUDE / clib / console_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-29  |  863 b   |  41 lines

  1. #ifndef  CLIB_CONSOLE_PROTOS_H
  2. #define  CLIB_CONSOLE_PROTOS_H
  3.  
  4. /*
  5. **    $VER: console_protos.h 36.6 (7.11.90)
  6. **    Includes Release 40.15
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    (C) Copyright 1990-1993 Commodore-Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. #ifndef  EXEC_LIBRARIES_H
  15. #include <exec/libraries.h>
  16. #endif
  17. #ifndef  DEVICES_INPUTEVENT_H
  18. #include <devices/inputevent.h>
  19. #endif
  20. #ifndef  DEVICES_KEYMAP_H
  21. #include <devices/keymap.h>
  22. #endif
  23.  
  24. #ifdef __cplusplus
  25. #define CLIBCPLUSON
  26. #pragma -
  27. #endif
  28.  
  29. struct InputEvent *CDInputHandler( struct InputEvent *events,
  30.     struct Library *consoleDevice );
  31. LONG RawKeyConvert( struct InputEvent *events, STRPTR buffer, long length,
  32.     struct KeyMap *keyMap );
  33. /*--- functions in V36 or higher (Release 2.0) ---*/
  34.  
  35. #ifdef CLIBCPLUSON
  36. #undef CLIBCPLUSON
  37. #pragma +
  38. #endif
  39.  
  40. #endif     /* CLIB_CONSOLE_PROTOS_H */
  41.