20 lines
311 B
C++
20 lines
311 B
C++
/*
|
|
* Copyright (C) 2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
namespace NEO {
|
|
|
|
class HwDeviceId;
|
|
struct RootDeviceEnvironment;
|
|
|
|
bool initWddmOsInterface(std::unique_ptr<HwDeviceId> &&hwDeviceId, RootDeviceEnvironment *rootDeviceEnv);
|
|
|
|
} // namespace NEO
|