1 /** 2 * Copyright (C) 2023 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 #ifndef MINDSPORE_INCLUDE_JS_API_MSLITE_MODEL_CALLBACK_NAPI_H 16 #define MINDSPORE_INCLUDE_JS_API_MSLITE_MODEL_CALLBACK_NAPI_H 17 18 #include <queue> 19 #include <uv.h> 20 #include "mslite_model_napi.h" 21 #include "ms_info.h" 22 #include "common_napi.h" 23 24 namespace mindspore { 25 enum class AsyncWorkType : int32_t { 26 ASYNC_WORK_PREPARE = 0, 27 ASYNC_WORK_PLAY, 28 ASYNC_WORK_PAUSE, 29 ASYNC_WORK_STOP, 30 ASYNC_WORK_RESET, 31 ASYNC_WORK_SEEK, 32 ASYNC_WORK_SPEED, 33 ASYNC_WORK_VOLUME, 34 ASYNC_WORK_BITRATE, 35 ASYNC_WORK_INVALID, 36 }; 37 } // namespace mindspore 38 #endif // COMMON_NAPI_H