Added OpenCL Universal Driver Support for Win10 RS3 (#21)
[platform/upstream/OpenCL-ICD-Loader.git] / OpenCL.rc
1 /*
2  * Copyright (c) 2016 The Khronos Group Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a copy
5  * of this software source and associated documentation files (the "Materials"),
6  * to deal in the Materials without restriction, including without limitation
7  * the rights to use, copy, modify, compile, merge, publish, distribute,
8  * sublicense, and/or sell copies of the Materials, and to permit persons to
9  * whom the Materials are furnished to do so, subject the following terms and
10  * conditions:
11  *
12  * All modifications to the Materials used to create a binary that is
13  * distributed to third parties shall be provided to Khronos with an
14  * unrestricted license to use for the purposes of implementing bug fixes and
15  * enhancements to the Materials;
16  *
17  * If the binary is used as part of an OpenCL(TM) implementation, whether binary
18  * is distributed together with or separately to that implementation, then
19  * recipient must become an OpenCL Adopter and follow the published OpenCL
20  * conformance process for that implementation, details at:
21  * http://www.khronos.org/conformance/;
22  *
23  * The above copyright notice, the OpenCL trademark license, and this permission
24  * notice shall be included in all copies or substantial portions of the
25  * Materials.
26  *
27  * THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
30  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
31  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
32  * OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS IN
33  * THE MATERIALS.
34  *
35  * OpenCL is a trademark of Apple Inc. used under license by Khronos.
36  */
37
38 #include <windows.h>
39
40 #ifdef RC_INVOKED
41
42 VS_VERSION_INFO VERSIONINFO
43 FILEVERSION    2,2,1,0
44 PRODUCTVERSION 2,2,1,0
45 FILETYPE       VFT_DLL
46
47 BEGIN
48     BLOCK "StringFileInfo"
49     BEGIN
50         BLOCK "040904E4"
51         BEGIN
52             VALUE "FileDescription" ,"OpenCL Client DLL"
53             VALUE "ProductName"     ,"Khronos OpenCL ICD"
54             VALUE "LegalCopyright"  ,"Copyright \251 The Khronos Group Inc 2016"
55             VALUE "FileVersion"     ,"2.2.1.0"
56             VALUE "CompanyName"     ,"Khronos Group"
57             VALUE "InternalName"    ,"OpenCL"
58             VALUE "OriginalFilename","OpenCL.dll"
59         END
60     END
61
62     BLOCK "VarFileInfo"
63     BEGIN
64         // extend this line for localized versions
65         VALUE "Translation", 0x0409, 0x04E4
66     END
67 END
68
69 #endif
70