home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 19 / CD_ASCQ_19_010295.iso / dos / prg / c / cwl30 / mc3lib / peekpoke.h < prev   
Encoding:
C/C++ Source or Header  |  1994-05-20  |  392 b   |  16 lines

  1. /*** PEEKPOKE.H ***/
  2.  
  3. /* Written By P.A. McKenzie
  4.  * The C Window Library
  5.  * Copyright (C) 1990   All Rights Reserved
  6. */
  7. #if defined (MSC) || (LATTICE) || (__ZTC__)
  8.   #define  peekfunc(a,b)    TCpeek(a,b)
  9.   #define  pokefunc(a,b,c)  TCpoke(a,b,c)
  10. #endif
  11.  
  12. #if defined (__TURBOC__) || (POWERC)
  13.   #define   peekfunc(a,b)   peek(a,b)
  14.   #define   pokefunc(a,b,c) poke(a,b,c)
  15. #endif
  16.