mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
Create new file: `os_handle.h` which contains OS specific Handle type. Add `shared/source/os_interface/<windows/linux>` include directory to level_zero. Related-To: NEO-8092 Signed-off-by: Fabian Zwolinski <fabian.zwolinski@intel.com>
13 lines
160 B
C++
13 lines
160 B
C++
/*
|
|
* Copyright (C) 2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
using HandleType = int;
|
|
}; // namespace NEO
|