home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / dbmsg / oledb / sampclnt / sampver.h < prev   
Encoding:
C/C++ Source or Header  |  1998-03-12  |  1013 b   |  32 lines

  1. //-----------------------------------------------------------------------------
  2. // Microsoft OLE DB Sample Consumer
  3. // (C) Copyright 1995 - 1998 Microsoft Corporation. All Rights Reserved.
  4. //
  5. // @doc
  6. //
  7. // @module OLEDBVER.H | version include file
  8. //
  9. // @rev 1 | 05-09-95 | Peterbu | Created
  10. // @rev 2 | 08-15-95 | Briants | changed from kageravr.h
  11. //
  12.  
  13. // Constants -----------------------------------------------------------------
  14.  
  15. #define VER_FILEVERSION  01,00,13,31
  16. #define VER_FILEVERSION_STR  " 1.00.1331\0"
  17. #define VER_PRODUCTVERSION  01,00,13,31
  18. #define VER_PRODUCTVERSION_STR  " 1.00.1331\0"
  19.  
  20. #define VER_FILEFLAGSMASK        (VS_FF_DEBUG | VS_FF_PRERELEASE)
  21. #ifdef DEBUG
  22. #define VER_FILEFLAGS            (VS_FF_DEBUG)
  23. #else
  24. #define VER_FILEFLAGS            (0)
  25. #endif
  26.  
  27. #define VER_FILEOS                VOS_NT_WINDOWS32
  28.  
  29. #define VER_COMPANYNAME_STR        "Microsoft Corporation\0"
  30. #define VER_PRODUCTNAME_STR        "Microsoft OLE DB\0"
  31. #define VER_LEGALCOPYRIGHT_STR    "Copyright \251 Microsoft Corporation 1995-1998\0"
  32.