mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
15 lines
196 B
C
15 lines
196 B
C
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
enum class GetInfoStatus {
|
|
INVALID_CONTEXT = -2,
|
|
INVALID_VALUE = -1,
|
|
SUCCESS = 0
|
|
};
|