1 /*
2  * Copyright (C) 2018-2021 Intel Corporation
3  *
4  * SPDX-License-Identifier: MIT
5  *
6  */
7 
8 #pragma once
9 #include "shared/source/os_interface/os_library.h"
10 
11 namespace Os {
12 // Compiler library names
13 extern const char *frontEndDllName;
14 extern const char *igcDllName;
15 extern const char *testDllName;
16 
17 // OS specific directory separator
18 extern const char *fileSeparator;
19 
20 // Os specific Metrics Library name
21 extern const char *metricsLibraryDllName;
22 }; // namespace Os
23