mirror of
https://github.com/openharmony/ai_engine.git
synced 2026-07-01 20:14:02 -04:00
ddebe3bbad
Change-Id: Ia5ba7f9e658904efedfc599cf851570a730698eb
38 lines
1.6 KiB
C
Executable File
38 lines
1.6 KiB
C
Executable File
/*
|
|
* Copyright (c) 2021 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef AI_RETCODE_H
|
|
#define AI_RETCODE_H
|
|
|
|
/**
|
|
* Error code used to communicate between plugin SDK and apps.
|
|
*/
|
|
typedef enum {
|
|
AI_RETCODE_SUCCESS = 0, /** Return code for an operation success */
|
|
AI_RETCODE_FAILURE = -1, /** Return code for an operation failure */
|
|
|
|
AI_RETCODE_INIT_ERROR = 1001, /** Return code for an initialization error */
|
|
AI_RETCODE_NULL_PARAM = 1002, /** Return code for a null parameter error */
|
|
AI_RETCODE_DUPLICATE_INIT_ERROR = 1004, /** Return code for a duplicate initialization error */
|
|
|
|
AI_RETCODE_SERIALIZATION_ERROR = 2001, /** Return code for a serialization error */
|
|
AI_RETCODE_UNSERIALIZATION_ERROR = 2002, /** Return code for a deserialization error */
|
|
|
|
AI_RETCODE_PLUGIN_EXECUTION_ERROR = 3001, /** Return code for a plugin execution error */
|
|
AI_RETCODE_PLUGIN_SESSION_ERROR = 3002, /** Return code for a plugin session error */
|
|
} AiRetCode;
|
|
|
|
#endif // AI_RETCODE_H
|