1/* 2 * Copyright (c) 2016-2023 The Khronos Group Inc. 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 * 16 * OpenCL is a trademark of Apple Inc. used under license by Khronos. 17 */ 18 19#include <windows.h> 20#include <icd_version.h> 21 22#ifdef RC_INVOKED 23 24VS_VERSION_INFO VERSIONINFO 25FILEVERSION OPENCL_ICD_LOADER_VERSION_MAJOR,OPENCL_ICD_LOADER_VERSION_MINOR,OPENCL_ICD_LOADER_VERSION_REV,0 26PRODUCTVERSION OPENCL_ICD_LOADER_VERSION_MAJOR,OPENCL_ICD_LOADER_VERSION_MINOR,OPENCL_ICD_LOADER_VERSION_REV,0 27FILETYPE VFT_DLL 28 29BEGIN 30 BLOCK "StringFileInfo" 31 BEGIN 32 BLOCK "040904E4" 33 BEGIN 34 VALUE "FileDescription" ,"OpenCL Client DLL" 35 VALUE "ProductName" ,OPENCL_ICD_LOADER_NAME_STRING 36 VALUE "LegalCopyright" ,L"Copyright \251 The Khronos Group Inc 2016-2023" 37 VALUE "FileVersion" ,OPENCL_ICD_LOADER_VERSION_STRING ".0" 38 VALUE "CompanyName" ,OPENCL_ICD_LOADER_VENDOR_STRING 39 VALUE "InternalName" ,"OpenCL" 40 VALUE "OriginalFilename","OpenCL.dll" 41 END 42 END 43 44 BLOCK "VarFileInfo" 45 BEGIN 46 // extend this line for localized versions 47 VALUE "Translation", 0x0409, 0x04E4 48 END 49END 50 51#endif 52 53