mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-20 00:05:15 +08:00
use type with correct naming convention Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
16 lines
263 B
C
16 lines
263 B
C
/*
|
|
* Copyright (C) 2022-2024 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#ifdef IGSC_PRESENT
|
|
#pragma warning(disable : 4200)
|
|
#include "igsc_lib.h"
|
|
using IgscDeviceInfo = igsc_device_info;
|
|
#else
|
|
using IgscDeviceInfo = void *;
|
|
#endif
|