mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Signed-off-by: Piotr Maciejewski <piotr.maciejewski@intel.com> Change-Id: I0f00dca1892f4857baaebc75ba2208a4f33db1bf
25 lines
503 B
C++
25 lines
503 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/os_interface/os_library.h"
|
|
|
|
namespace Os {
|
|
// Compiler library names
|
|
extern const char *frontEndDllName;
|
|
extern const char *igcDllName;
|
|
extern const char *testDllName;
|
|
|
|
// OS specific directory separator
|
|
extern const char *fileSeparator;
|
|
// Pci Path
|
|
extern const char *sysFsPciPath;
|
|
|
|
// Os specific Metrics Library name
|
|
extern const char *metricsLibraryDllName;
|
|
}; // namespace Os
|