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 / qurydemo / quryver.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-12  |  1012 b   |  38 lines

  1. //-----------------------------------------------------------------------------
  2. // Microsoft OLE DB Version File
  3. // Copyright (C) 1995-1998 Microsoft Corporation
  4. //
  5. // @doc
  6. //
  7. // @module version include file
  8. //
  9. //
  10.  
  11. // Constants -----------------------------------------------------------------
  12. #ifndef _AXVER_H_
  13. #define _AXVER_H_
  14.  
  15. #define VER_FILEVERSION  00,99,18,28
  16. #define VER_FILEVERSION_STR  " 0.99.1828\0"
  17. #define VER_PRODUCTVERSION  00,99,18,28
  18. #define VER_PRODUCTVERSION_STR  " 0.99.1828\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.  
  33. // Resource DLL Version Resource ID
  34. #define IDS_RESDLL_VER            1
  35.  
  36. #endif
  37. //--------------------
  38.