60 lines
2.4 KiB
Plaintext
60 lines
2.4 KiB
Plaintext
/*
|
|
* windivert.rc
|
|
* (C) 2022, all rights reserved,
|
|
*
|
|
* This file is part of WinDivert.
|
|
*
|
|
* WinDivert is free software: you can redistribute it and/or modify it under
|
|
* the terms of the GNU Lesser General Public License as published by the
|
|
* Free Software Foundation, either version 3 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 Lesser General Public
|
|
* License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* WinDivert 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., 51
|
|
* Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include <windows.h>
|
|
#include <ntverp.h>
|
|
|
|
#include "windivert_log.rc"
|
|
|
|
#define VER_FILETYPE VFT_DRV
|
|
#define VER_FILESUBTYPE VFT2_DRV_NETWORK
|
|
#define VER_FILEDESCRIPTION_STR \
|
|
"The WinDivert 2.2 driver " \
|
|
"[URL: https://reqrypt.org/windivert.html] " \
|
|
"[Bitcoin: 1C5vZVSbizPeZ8ydTYhUfm4LA2cNwBfcYh]"
|
|
#define VER_INTERNALNAME_STR "WinDivert.sys"
|
|
#define VER_ORIGINALFILENAME_STR "WinDivert.sys"
|
|
#define VER_PRODUCTVERSION 2.2
|
|
#define VER_PRODUCTVERSION_STR "2.2"
|
|
#define VER_COMPANYNAME_STR "Basil"
|
|
#define VER_LEGALCOPYRIGHT_YEARS "2011-2022"
|
|
#define VER_LEGALCOPYRIGHT_STR \
|
|
"Copyright \251 " VER_COMPANYNAME_STR " " VER_LEGALCOPYRIGHT_YEARS
|
|
#define VER_FILEVERSION VER_PRODUCTVERSION
|
|
#define VER_FILEVERSION_STR VER_PRODUCTVERSION_STR
|
|
#define VER_PRODUCTNAME_STR "WinDivert 2.2 driver"
|
|
|
|
#include "common.ver"
|
|
|