📄 version.h
字号:
//-----------------------------------------------------------------------------
// Microsoft OLE DB RowsetViewer
// Copyright (C) 1994 - 1998 By Microsoft Corporation.
//
// @doc
//
// @module version include file
//
//
// Constants -----------------------------------------------------------------
#ifndef _AXVER_H_
#define _AXVER_H_
//#include "verbuild.h"
#define MAJOR_BUILDNUMBER 2905
#define MINOR_BUILDNUMBER 0
// Macros to define string from version integers ------------------------------
#define VER_MAKESTR_1(x) #x
#define VER_MAKESTR(x) VER_MAKESTR_1( ##x)
// Constants ------------------------------------------------------------------
#define VER_FILEVERSION 02,00,MAJOR_BUILDNUMBER,MINOR_BUILDNUMBER
#define VER_FILEVERSION_STR "02.00." VER_MAKESTR(MAJOR_BUILDNUMBER) "." VER_MAKESTR(MINOR_BUILDNUMBER) "\0"
#define VER_PRODUCTVERSION 02,00,MAJOR_BUILDNUMBER,MINOR_BUILDNUMBER
#define VER_PRODUCTVERSION_STR "02.00." VER_MAKESTR(MAJOR_BUILDNUMBER) "." VER_MAKESTR(MINOR_BUILDNUMBER) "\0"
#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\0"
#define VER_PRODUCTNAME_STR "Microsoft OLE DB\0"
#define VER_LEGALCOPYRIGHT_STR "Copyright \251 Microsoft Corporation 1994-1998\0"
// Resource DLL Version Resource ID
#define IDS_RESDLL_VER 1
#endif
//--------------------
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -