mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

Resolves: NEO-4174 Change-Id: I465d6137deb1dac1146a5b28ff1c100823a1d6b6 Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
23 lines
362 B
C++
23 lines
362 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "shared/source/os_interface/os_environment.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace NEO {
|
|
class Gdi;
|
|
|
|
struct OsEnvironmentWin : public OsEnvironment {
|
|
OsEnvironmentWin();
|
|
~OsEnvironmentWin() override;
|
|
|
|
std::unique_ptr<Gdi> gdi;
|
|
};
|
|
} // namespace NEO
|