mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
Change-Id: Ib07543fb5f6048e99cdd198111ba88309da2c3e8 Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
18 lines
345 B
C++
18 lines
345 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#define PATH_SEPARATOR '\\'
|
|
|
|
// For now we need to keep this file clean of OS specific #includes.
|
|
// Only issues to address portability should be covered here.
|
|
|
|
namespace Os {
|
|
// OS GDI name
|
|
extern const char *gdiDllName;
|
|
}; // namespace Os
|