home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1994 March / Source_Code_CD-ROM_Walnut_Creek_March_1994.iso / win3 / patches / symantec / rtlinc.exe / WINDOWS.H < prev    next >
C/C++ Source or Header  |  1993-06-30  |  314b  |  20 lines

  1. /* copyright 1993  - Symantec Corporation */
  2. /* wrapper for the two different windows.h */
  3.  
  4. #ifdef __NT__
  5.  
  6. #ifndef _WINDOWS_
  7. #pragma pack(__DEFALIGN)
  8. #define _MSC_VER 800
  9. #define _X86_ 1
  10. #include <win32\windows.h>
  11. #undef _MSC_VER
  12. #pragma pack()
  13. #endif
  14.  
  15. #else
  16.  
  17. #include <win16\windows.h>
  18.  
  19. #endif
  20.