mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-27 07:44:16 +08:00
memory_info engine_info os_inc Related-To: NEO-3982 Change-Id: I52ef357f790497fc6efcd590db277ce96ec1e579 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
23 lines
455 B
C++
23 lines
455 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;
|
|
|
|
// Os specific Metrics Library name
|
|
extern const char *metricsLibraryDllName;
|
|
}; // namespace Os
|