compute-runtime/shared/source/helpers/get_info_status.h

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
};