home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / include / odbcver.h < prev    next >
C/C++ Source or Header  |  1998-04-25  |  1KB  |  34 lines

  1. /*--------------------------------------------------------------------------
  2.   ODBCVer.h -- ODBC Version info
  3. --------------------------------------------------------------------------*/
  4.  
  5.  
  6. // Includes ----------------------------------------------------------------
  7. #ifndef WIN32
  8. #include  <ver.h>                         // Version defines
  9. #endif
  10.  
  11.  
  12. // Constants ---------------------------------------------------------------
  13. #define VER_FILEVERSION 02,65,02,01
  14. #define VER_FILEVERSION_STR " 2.65.0201\0"
  15. #define VER_PRODUCTVERSION 02,65,02,01
  16. #define VER_PRODUCTVERSION_STR " 2.65.0201\0"
  17.  
  18. #define VER_FILEFLAGSMASK (VS_FF_DEBUG | VS_FF_PRERELEASE)
  19. #ifdef DEBUG
  20. #define VER_FILEFLAGS (VS_FF_DEBUG)
  21. #else
  22. #define VER_FILEFLAGS (0)
  23. #endif
  24.  
  25. #ifdef WIN32
  26. #define    VER_FILEOS    VOS_NT_WINDOWS32
  27. #else
  28. #define VER_FILEOS  VOS_DOS_WINDOWS16
  29. #endif
  30.  
  31. #define VER_COMPANYNAME_STR     "Microsoft Corporation\0"
  32. #define VER_PRODUCTNAME_STR     "Microsoft SQL Server\0"
  33. #define VER_LEGALCOPYRIGHT_STR    "Copyright \251 Microsoft Corporation 1990-1996\0"
  34.