home *** CD-ROM | disk | FTP | other *** search
/ ABBUC Magazin 60B / ABBUC_Magazin_60_2000_ABBUC_Side_B.atr / irg.h < prev    next >
C/C++ Source or Header  |  2023-02-26  |  536b  |  16 lines

  1. /* irg.h: CC65 functions for the infrared gateway (IRG) Version 1.0
  2. ; ------------------------------------------------------------------
  3. ; Copyright 1994 David Deaven version 1.0
  4. ; Permission to use, copy, and distribute this code is granted
  5. ; provided that it is not used for commercial applications.
  6. ; deaven@iastate.edu
  7. */
  8. #ifndef _IRG_H_
  9. #define _IRG_H_
  10.  
  11. int IRGinit(/* sample, ton, toff, repeat, tonmin, toffmax, qtime, totime */);
  12. int IRGread(/* char *buffer, int size */);
  13. int IRGwrite(/* char *buffer */);
  14.  
  15. #endif /* _IRG_H_ */
  16.