home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_100 / 176_01 / pcfun.doc < prev    next >
Text File  |  1986-01-06  |  996b  |  44 lines

  1. PCFUN.MEM
  2. 12/9/85
  3.  
  4. This is a list of IBM-PC specific functions in XLISP version 1.5d.
  5. All of the functions take integers as arguments except where noted.
  6. All of the functions return NIL.
  7.  
  8. (dos <cmd>)  Execute a DOS command
  9.   <cmd>    the command string
  10.  
  11. (get-key)  Get a key from the keyboard
  12.  
  13. (set-cursor <row> <col>)  Set the cursor position
  14.  
  15. (clear)  Clear the screen
  16.  
  17. (clear-eol)  Clear to the end of the current line
  18.  
  19. (clear-eos)  Clear to the end of the screen
  20.  
  21. (insert-line)  Insert a line
  22.  
  23. (delete-line)  Delete a line
  24.  
  25. (insert-char)  Insert a character
  26.  
  27. (delete-char)  Delete a character
  28.  
  29. (set-inverse <mode>)  Set inverse mode
  30.    <mode> is T for inverse, NIL for normal
  31.  
  32. (line <x1> <y1> <x2> <y2>)  Draw a line
  33.  
  34. (point <x> <y>)  Draw a point
  35.  
  36. (circle <x> <y> <radius>)  Draw a circle
  37.  
  38. (aspect-ratio <x> <y>)  Set the aspect ratio for circles
  39.  
  40. (colors <color> <palette> <background>)  Set the display colors
  41.  
  42. (mode <mode>)  Set the display mode
  43.  
  44.