home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / language / xlisp / Source / h / osdefs next >
Encoding:
Text File  |  1992-02-17  |  300 b   |  14 lines

  1. /* osdefs.h - system specific function declarations */
  2.  
  3. extern LVAL xsystem(V);
  4.  
  5. #if !(defined(UNIX)||defined(AMIGA))
  6. extern LVAL xgetkey(V);
  7. #endif
  8.  
  9. #ifdef GRAPHICS
  10. extern LVAL xmode(V), xcolor(V), xmove(V), xdraw(V),
  11.     xmoverel(V), xdrawrel(V);
  12. extern LVAL xcls(V), xcleol(V), xgotoxy(V);
  13. #endif
  14.