home *** CD-ROM | disk | FTP | other *** search
/ ftp.cs.arizona.edu / ftp.cs.arizona.edu.tar / ftp.cs.arizona.edu / icon / historic / v92.tgz / v92.tar / v92 / src / runtime / rwinsys.r < prev    next >
Text File  |  1996-03-22  |  529b  |  28 lines

  1. /*
  2.  * File: rwinsys.r
  3.  *  Window-system-specific window support routines.
  4.  *  This file simply includes an appropriate r*win.ri file.
  5.  */
  6.  
  7. #ifdef Graphics
  8.  
  9. #ifdef MacGraph
  10. #include "rmac.ri"
  11. #endif                    /* MacGraph */
  12.  
  13. #ifdef PresentationManager
  14. #include "rpmwin.ri"
  15. #endif                    /* PresentationManager */
  16.  
  17. #ifdef XWindows
  18. #include "rxwin.ri"
  19. #endif                    /* XWindows */
  20.  
  21. #ifdef MSWindows
  22. #include "rmswin.ri"
  23. #endif                  /* MSWindows */
  24.  
  25. #else                    /* Graphics */
  26. static char junk;        /* avoid empty module */
  27. #endif                    /* Graphics */
  28.