📄 com0com.rc
字号:
/*
* $Id: com0com.rc,v 1.8 2006/01/10 09:24:31 vfrolov Exp $
*
* Copyright (c) 2004-2006 Vyacheslav Frolov
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*
* $Log: com0com.rc,v $
* Revision 1.8 2006/01/10 09:24:31 vfrolov
* Utilized C0C_COPYRIGHT_YEARS
*
* Revision 1.7 2005/09/05 16:05:03 vfrolov
* Moved version info to version.h
*
* Revision 1.2 2005/02/01 09:09:28 vfrolov
* Added version info
*
* Revision 1.1 2005/01/26 12:18:54 vfrolov
* Initial revision
*
*/
#include <windows.h>
#include <ntverp.h>
#include "c0clog.rc"
#include "version.h"
#define VER_VERSION C0C_V1,C0C_V2,C0C_V3,C0C_V4
#define VER_VERSION_STR C0C_VERSION_STR
#define VER_PODUCT_NAME_STR "Null-modem emulator"
#if DBG
#define VER_DEBUG_STR " (debug version)"
#else
#define VER_DEBUG_STR ""
#endif
VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_VERSION
PRODUCTVERSION VER_VERSION
FILEFLAGSMASK VER_FILEFLAGSMASK
FILEFLAGS VER_FILEFLAGS
FILEOS VER_FILEOS
FILETYPE VFT_DRV
FILESUBTYPE VFT2_DRV_COMM
{
BLOCK "StringFileInfo" {
BLOCK "040904B0" {
VALUE "CompanyName", "Vyacheslav Frolov\0"
VALUE "FileDescription", VER_PODUCT_NAME_STR VER_DEBUG_STR
VALUE "FileVersion", VER_VERSION_STR
VALUE "InternalName", "com0com\0"
VALUE "LegalCopyright", "Copyright (c) " C0C_COPYRIGHT_YEARS " Vyacheslav Frolov\0"
VALUE "OriginalFilename", "com0com.sys\0"
VALUE "ProductName", VER_PODUCT_NAME_STR
VALUE "ProductVersion", VER_VERSION_STR
}
}
BLOCK "VarFileInfo" {
VALUE "Translation", 0x409, 0x4B0
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -