1/*============================================================================== 2Copyright(c) 2017 Intel Corporation 3 4Permission is hereby granted, free of charge, to any person obtaining a 5copy of this software and associated documentation files(the "Software"), 6to deal in the Software without restriction, including without limitation 7the rights to use, copy, modify, merge, publish, distribute, sublicense, 8and / or sell copies of the Software, and to permit persons to whom the 9Software is furnished to do so, subject to the following conditions: 10 11The above copyright notice and this permission notice shall be included 12in all copies or substantial portions of the Software. 13 14THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 15OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 18OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 19ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 20OTHER DEALINGS IN THE SOFTWARE. 21 22File Name: igdgmm.rc 23 24Abstract: 25 26Notes: 27 28============================================================================*/ 29#ifdef _WIN32 30#include <windows.h> 31 32#include <..\..\..\install\intcver.h> 33#endif 34 35#define VER_FILETYPE VFT_DLL 36#define VER_FILESUBTYPE VFT2_DRV_INSTALLABLE 37#define VER_FILEOS VOS_NT_WINDOWS32 38#define VER_FILEDESCRIPTION "User Mode Driver for Intel(R) Graphics Technology\0" 39 40#ifdef _WIN64 41#define VER_INTERNALNAME "igdgmm64.dll" 42#define VER_ORIGINALNAME "igdgmm64.dll" 43#else 44#define VER_INTERNALNAME "igdgmm32.dll" 45#define VER_ORIGINALNAME "igdgmm32.dll" 46#endif 47 48#ifdef _WIN32 49#include <..\..\..\inc\verinfo.ver> 50#endif 51