mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
//***************************************************************************
|
|
// Version Resource
|
|
//
|
|
//***************************************************************************
|
|
|
|
#include <windows.h>
|
|
#include <ntverp.h>
|
|
|
|
#include "depend.inc"
|
|
|
|
#define VER_FILETYPE VFT_DRV
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#undef VER_COMPANYNAME_STR
|
|
#define VER_COMPANYNAME_STR "Toshiba Corporation"
|
|
#define VER_FILEDESCRIPTION_STR "Toshiba DVD Stream Minidriver"
|
|
#define VER_FILEVERSION_STR TOSDVD_VERSION_STR
|
|
#define VER_FILEVERSION TOSDVD_VERSION
|
|
#define VER_INTERNALNAME_STR TOSDVD_DRVNAME_STR
|
|
#define VER_LEGALCOPYRIGHT_STR "Copyright (C) 1998-1999 Toshiba Corporation."
|
|
#define VER_ORIGINALFILENAME_STR VER_INTERNALNAME_STR
|
|
|
|
#undef VER_PRODUCTNAME_STR
|
|
#undef VER_PRODUCTVERSION
|
|
#undef VER_PRODUCTVERSION_STR
|
|
#define VER_PRODUCTNAME_STR "Toshiba DVD Minidriver"
|
|
#define VER_PRODUCTVERSION 1,0,0,0
|
|
#define VER_PRODUCTVERSION_STR "1.00"
|
|
|
|
#include "common.ver"
|