Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1004 B

  1. /*--------------------------------------------------------------------------
  2. ODBCVer.h -- ODBC Version info
  3. --------------------------------------------------------------------------*/
  4. // Includes ----------------------------------------------------------------
  5. #ifndef WIN32
  6. #include <ver.h> // Version defines
  7. #endif
  8. // Constants ---------------------------------------------------------------
  9. #define VER_FILEVERSION 02,00,15,10
  10. #define VER_FILEVERSION_STR " 2.00.1510\0"
  11. #define VER_PRODUCTVERSION 02,00,15,10
  12. #define VER_PRODUCTVERSION_STR " 2.00.1510\0"
  13. #define VER_FILEFLAGSMASK (VS_FF_DEBUG | VS_FF_PRERELEASE)
  14. #ifdef DEBUG
  15. #define VER_FILEFLAGS (VS_FF_DEBUG)
  16. #else
  17. #define VER_FILEFLAGS (0)
  18. #endif
  19. #ifdef WIN32
  20. #define VER_FILEOS VOS_NT_WINDOWS32
  21. #else
  22. #define VER_FILEOS VOS_DOS_WINDOWS16
  23. #endif
  24. #define VER_COMPANYNAME_STR "Microsoft Corporation\0"
  25. #define VER_PRODUCTNAME_STR "Microsoft Open Database Connectivity\0"