home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / RAYCAST.ZIP / OS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-15  |  176 b   |  16 lines

  1. #ifndef _OS_
  2. #define _OS_
  3.  
  4. #define OS_DOS
  5.  
  6. #ifdef OS_DOS
  7. #include "types.h"
  8. #endif
  9.  
  10. #ifdef OS_WINDOWS
  11. #include <windows.h>
  12. #include <windowsx.h>
  13. #endif
  14.  
  15. #endif
  16.