compute-runtime/shared/source/os_interface/os_handle.h

15 lines
205 B
C++

/*
* Copyright (C) 2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <variant>
namespace NEO {
using UnifiedHandle = std::variant<int, void *>;
}; // namespace NEO