Use QueryAdapter APIs as per MS directives
[platform/upstream/OpenCL-ICD-Loader.git] / loader / windows / OpenCL.rc
1 /*
2  * Copyright (c) 2016-2019 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
21 #ifdef RC_INVOKED
22
23 VS_VERSION_INFO VERSIONINFO
24 FILEVERSION    2,2,2,0
25 PRODUCTVERSION 2,2,2,0
26 FILETYPE       VFT_DLL
27
28 BEGIN
29     BLOCK "StringFileInfo"
30     BEGIN
31         BLOCK "040904E4"
32         BEGIN
33             VALUE "FileDescription" ,"OpenCL Client DLL"
34             VALUE "ProductName"     ,"Khronos OpenCL ICD"
35             VALUE "LegalCopyright"  ,"Copyright \251 The Khronos Group Inc 2016-2019"
36             VALUE "FileVersion"     ,"2.2.2.0"
37             VALUE "CompanyName"     ,"Khronos Group"
38             VALUE "InternalName"    ,"OpenCL"
39             VALUE "OriginalFilename","OpenCL.dll"
40         END
41     END
42
43     BLOCK "VarFileInfo"
44     BEGIN
45         // extend this line for localized versions
46         VALUE "Translation", 0x0409, 0x04E4
47     END
48 END
49
50 #endif
51