VERSION.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  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. // Constants -----------------------------------------------------------------
  11. #ifndef _AXVER_H_
  12. #define _AXVER_H_
  13. #define VER_FILEVERSION  01,10,27,20
  14. #define VER_FILEVERSION_STR  " 1.10.2720"
  15. #define VER_PRODUCTVERSION  01,10,27,20
  16. #define VER_PRODUCTVERSION_STR  " 1.10.2720"
  17. #define VER_FILEFLAGSMASK (VS_FF_DEBUG | VS_FF_PRERELEASE)
  18. #ifdef DEBUG
  19. #define VER_FILEFLAGS (VS_FF_DEBUG)
  20. #else
  21. #define VER_FILEFLAGS (0)
  22. #endif
  23. #define VER_FILEOS VOS_NT_WINDOWS32
  24. #define VER_COMPANYNAME_STR "Microsoft Corporation"
  25. #define VER_PRODUCTNAME_STR "Microsoft OLE DB"
  26. #define VER_LEGALCOPYRIGHT_STR "Copyright 251 Microsoft Corporation 1995-1998"
  27. // Resource DLL Version Resource ID
  28. #define IDS_RESDLL_VER 1
  29. #endif
  30. //--------------------