mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
- OsLibrary class - sku_info directory - gmm_lib.h header Change-Id: Ia86280e61cd2913c546afc40c3751b42e04ab137 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
25 lines
500 B
C++
25 lines
500 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "core/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
|