home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 May / PCP163A.iso / Runimage / Cbuilder4 / Include / ODBCVER.H < prev    next >
Encoding:
C/C++ Source or Header  |  1999-01-26  |  1.1 KB  |  36 lines

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