home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Emulation / Atari800 / devices.h < prev    next >
C/C++ Source or Header  |  1998-01-19  |  544b  |  26 lines

  1. #ifndef __DEVICES__
  2. #define __DEVICES__
  3.  
  4. void Device_Initialise (int *argc, char *argv[]);
  5.  
  6. void Device_HHOPEN (void);
  7. void Device_HHCLOS (void);
  8. void Device_HHREAD (void);
  9. void Device_HHWRIT (void);
  10. void Device_HHSTAT (void);
  11. void Device_HHSPEC (void);
  12. void Device_HHINIT (void);
  13.  
  14. void Device_PHOPEN (void);
  15. void Device_PHCLOS (void);
  16. void Device_PHREAD (void);
  17. void Device_PHWRIT (void);
  18. void Device_PHSTAT (void);
  19. void Device_PHSPEC (void);
  20. void Device_PHINIT (void);
  21.  
  22. void K_Device (UBYTE esc_code);
  23. void E_Device (UBYTE esc_code);
  24.  
  25. #endif
  26.