Updated .rc file
This commit is contained in:
parent
e4a25d5de9
commit
ec1e627253
@ -1,31 +1,49 @@
|
||||
#include <windows.h>
|
||||
//
|
||||
// Include the necessary resources
|
||||
//
|
||||
#include <winver.h>
|
||||
#include <ntdef.h>
|
||||
|
||||
#include <ntverp.h>
|
||||
#ifdef RC_INVOKED
|
||||
|
||||
#undef VER_PRODUCTBUILD
|
||||
#undef VER_PRODUCTBUILD_QFE
|
||||
#undef VER_PRODUCTNAME_STR
|
||||
#undef VER_PRODUCTMAJORVERSION
|
||||
#undef VER_PRODUCTMINORVERSION
|
||||
#undef VER_COMPANYNAME_STR
|
||||
#undef VER_LEGALTRADEMARKS_STR
|
||||
#undef VER_LEGALCOPYRIGHT_STR
|
||||
//
|
||||
// Set up debug information
|
||||
//
|
||||
#if DBG
|
||||
#define VER_DBG VS_FF_DEBUG
|
||||
#else
|
||||
#define VER_DBG 0
|
||||
#endif
|
||||
|
||||
#define VER_COMPANYNAME_STR "Red Hat Inc."
|
||||
#define VER_LEGALTRADEMARKS_STR ""
|
||||
#define VER_LEGALCOPYRIGHT_STR "Copyright (C) 2008-2016 Red Hat Inc."
|
||||
// ------- version info -------------------------------------------------------
|
||||
|
||||
#define VER_PRODUCTMAJORVERSION VERSION_V1
|
||||
#define VER_PRODUCTMINORVERSION VERSION_V2
|
||||
#define VER_PRODUCTBUILD VERSION_V3
|
||||
#define VER_PRODUCTBUILD_QFE VERSION_V4
|
||||
|
||||
#define VER_FILETYPE VFT_DRV
|
||||
#define VER_FILESUBTYPE VFT2_DRV_DISPLAY
|
||||
#define VER_FILEDESCRIPTION_STR "QXL WDDM DOD"
|
||||
#define VER_INTERNALNAME_STR "qxldod.sys"
|
||||
#define VER_ORIGINALFILENAME_STR "qxldod.sys"
|
||||
#define VER_PRODUCTNAME_STR VER_FILEDESCRIPTION_STR
|
||||
|
||||
#define VER_LANGNEUTRAL
|
||||
#include "common.ver"
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 10,0,1,0
|
||||
PRODUCTVERSION 10,0,1,0
|
||||
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
||||
FILEFLAGS VER_DBG
|
||||
FILEOS VOS_NT
|
||||
FILETYPE VFT_DRV
|
||||
FILESUBTYPE VFT2_DRV_DISPLAY
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904b0"
|
||||
BEGIN
|
||||
VALUE "Comments", "QXL WDDM DOD"
|
||||
VALUE "CompanyName", "Red Hat Inc., Nefarius Software Solutions e.U."
|
||||
VALUE "FileDescription", "QXL WDDM DOD"
|
||||
VALUE "FileVersion", "10.0.1.0"
|
||||
VALUE "InternalName", "QXL WDDM DOD"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2008-2016 Red Hat Inc., 2024 Nefarius Software Solutions e.U."
|
||||
VALUE "OriginalFilename", "qxldod.sys"
|
||||
VALUE "ProductName", "QXL WDDM DOD"
|
||||
VALUE "ProductVersion", "10.0.1.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
BEGIN
|
||||
VALUE "Translation", 0x0409,1200
|
||||
END
|
||||
END
|
||||
#endif
|
@ -163,7 +163,6 @@
|
||||
<ClInclude Include="compat.h" />
|
||||
<ClInclude Include="driver.h" />
|
||||
<ClInclude Include="QxlDod.h" />
|
||||
<ClInclude Include="resource.h" />
|
||||
<ClInclude Include="WppTrace.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
@ -1,14 +0,0 @@
|
||||
//{{NO_DEPENDENCIES}}
|
||||
// Microsoft Visual C++ generated include file.
|
||||
// Used by qxldod.rc
|
||||
|
||||
// Next default values for new objects
|
||||
//
|
||||
#ifdef APSTUDIO_INVOKED
|
||||
#ifndef APSTUDIO_READONLY_SYMBOLS
|
||||
#define _APS_NEXT_RESOURCE_VALUE 101
|
||||
#define _APS_NEXT_COMMAND_VALUE 40001
|
||||
#define _APS_NEXT_CONTROL_VALUE 1001
|
||||
#define _APS_NEXT_SYMED_VALUE 101
|
||||
#endif
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user