home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Unleashed / Visual_Basic_4_Unleashed_SAMS_Publishing_1995.iso / tedevkit / ter_hdr.h < prev    next >
C/C++ Source or Header  |  1995-04-11  |  894b  |  45 lines

  1. // TER_HDR.H This file is to be included on top of each file
  2.  
  3. #define  STRICT
  4.  
  5. // include stdlib.h before windows.h to handle a bug in 
  6. // BC45 and MSVC20 in the objbase.h file
  7. #if !defined(INC_OLE1) && defined(__FLAT__)
  8.   #include "stdlib.h"
  9. #endif
  10.  
  11. #include "windows.h"
  12.  
  13. #if defined (_WIN32)
  14.    #if !defined(WIN32)
  15.      #define WIN32
  16.    #endif
  17. #endif
  18. #if !defined(WIN32) 
  19.   #include "print.h"
  20.   #if defined (__TURBOC__)
  21.     typedef unsigned short USHORT;     // missing in compiler
  22.   #endif
  23. #endif
  24.  
  25. #include "stdlib.h"
  26. #include "stdio.h"
  27. #include "ctype.h"
  28. #include "dos.h"
  29. #include "fcntl.h"
  30. #include "io.h"
  31. #include "sys\types.h"
  32. #include "sys\stat.h"
  33. #include "math.h"
  34. #if defined(INC_OLE1) 
  35.    #include "ole.h"
  36. #else
  37.    #include "ole2.h"
  38. #endif
  39. #include "shellapi.h"
  40. #include "commdlg.h"
  41. #include "string.h"
  42.  
  43. #include "ter.h"
  44. #include "ter1.h"
  45.