mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
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
|