home *** CD-ROM | disk | FTP | other *** search
- /*** PEEKPOKE.H ***/
-
- /* Written By P.A. McKenzie
- * The C Window Library
- * Copyright (C) 1990 All Rights Reserved
- */
- #if defined (MSC) || (LATTICE) || (__ZTC__)
- #define peekfunc(a,b) TCpeek(a,b)
- #define pokefunc(a,b,c) TCpoke(a,b,c)
- #endif
-
- #if defined (__TURBOC__) || (POWERC)
- #define peekfunc(a,b) peek(a,b)
- #define pokefunc(a,b,c) poke(a,b,c)
- #endif
-