⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vcom.rc

📁 一个虚拟串口的驱动程序源代码
💻 RC
字号:
//============================================================================
//
//  N8VB_vcom - Virtual COM Port
//  Copyright (c) 2005 Philip A Covington, N8VB
//
//	Email: p.covington@gmail.com
//
//  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
//
//============================================================================


#include <winver.h>
#include <ntverp.h>

#undef VER_COMPANYNAME_STR
#undef VER_PRODUCTNAME_STR
#undef VER_PRODUCTVERSION_STR
#undef VER_PRODUCTVERSION

#define VER_PRODUCTVERSION_STR  "1.0.0.4"
#define VER_PRODUCTVERSION      1,0,0,4 
#define VER_FILEVERSION_STR     "0.0.0.226"
#define VER_FILEVERSION         0,0,0,226 
#define VER_BUILD_NO            226 

#define VER_FILETYPE	            	VFT_DRV
#define VER_FILESUBTYPE	            VFT2_DRV_COMM
#define VER_COMPANYNAME_STR         "N8VB vCOM"

#define VER_FILEDESCRIPTION_STR     "N8VB vCOM Virtual Serial Port Driver"

#define VER_INTERNALNAME_STR        "vcom.sys"
#define VER_LEGALCOPYRIGHT_STR      "Copyright 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -