home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast.iso / pcmag / vol10n21.zip / IACA.ZIP / IACA.H next >
Text File  |  1991-10-31  |  301b  |  21 lines

  1. IACA.H
  2.  
  3.  
  4. // iaca.h
  5.  
  6. #if !defined(IACA_H)
  7.  
  8. typedef void far *(far *IACAPTR);
  9. #define IACAADDRESS 0x000004f0
  10.  
  11. void far *_IacaBase = (void far *)IACAADDRESS;
  12. IACAPTR _Iaca = (IACAPTR)(IACAADDRESS);
  13.  
  14. #define _IacaReset()     (_Iaca = (IACAPTR)(IACAADDRESS))
  15.  
  16. #define IACA_H
  17. #endif
  18.  
  19.  
  20.  
  21.