VERSION.H
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- //-----------------------------------------------------------------------------
- // Microsoft OLE DB Version File
- // Copyright (C) 1995-1998 Microsoft Corporation
- //
- // @doc
- //
- // @module version include file
- //
- //
- // Constants -----------------------------------------------------------------
- #ifndef _AXVER_H_
- #define _AXVER_H_
- #define VER_FILEVERSION 01,10,27,20
- #define VER_FILEVERSION_STR " 1.10.2720 "
- #define VER_PRODUCTVERSION 01,10,27,20
- #define VER_PRODUCTVERSION_STR " 1.10.2720 "
- #define VER_FILEFLAGSMASK (VS_FF_DEBUG | VS_FF_PRERELEASE)
- #ifdef DEBUG
- #define VER_FILEFLAGS (VS_FF_DEBUG)
- #else
- #define VER_FILEFLAGS (0)
- #endif
- #define VER_FILEOS VOS_NT_WINDOWS32
- #define VER_COMPANYNAME_STR "Microsoft Corporation "
- #define VER_PRODUCTNAME_STR "Microsoft OLE DB "
- #define VER_LEGALCOPYRIGHT_STR "Copyright 251 Microsoft Corporation 1995-1998 "
- // Resource DLL Version Resource ID
- #define IDS_RESDLL_VER 1
- #endif
- //--------------------