/* * Copyright (C) 2022-2024 Intel Corporation * * SPDX-License-Identifier: MIT * */ #pragma once #include "shared/source/os_interface/windows/d3dkmthk_wrapper.h" namespace NEO { namespace GdiLogging { #if defined(_RELEASE_INTERNAL) || (_DEBUG) constexpr bool gdiLoggingSupport = true; #else constexpr bool gdiLoggingSupport = false; #endif template void logEnter(Param param); template void logExit(NTSTATUS status, Param param); void init(); void close(); } // namespace GdiLogging } // namespace NEO