Compare commits

...

6 Commits

Author SHA1 Message Date
openharmony_ci d27f593218
!48 修复codex告警,删除无用文件
Merge pull request !48 from caochao/cherry-pick-1644463793
2022-02-10 03:55:40 +00:00
zjucx 8a8c0c5a13 fixed 9efc104 from https://gitee.com/caochao123/distributedschedule_samgr_lite/pulls/39
fixed 40e98f8 from https://gitee.com/zjucx/distributedschedule_samgr_lite/pulls/37
delete useless files

Signed-off-by: zjucx <chengxiang4@huawei.com>
2022-02-10 03:29:57 +00:00
openharmony_ci a53d7c9e27 !38 添加bundle.json
Merge pull request !38 from yorere/OpenHarmony-3.0-LTS
2021-12-30 02:18:43 +00:00
openharmony_ci c3e591a842 !38 添加bundle.json
Merge pull request !38 from yorere/OpenHarmony-3.0-LTS
2021-12-30 02:18:43 +00:00
yorere 253ff59879 fix
Signed-off-by: yorere <wangyihang3@huawei.com>
2021-12-24 15:18:15 +08:00
yorere abf1f16ce1 add bundle.json
Signed-off-by: yorere <wangyihang3@huawei.com>
2021-12-21 20:06:40 +08:00
2 changed files with 58 additions and 58 deletions

58
bundle.json Normal file
View File

@ -0,0 +1,58 @@
{
"name": "@ohos/distributedschedule_samgr_lite",
"version": "",
"description": "提供系统服务的注册、发现能力。",
"homePage": "https://gitee.com/openharmony",
"license": "Apache V2",
"repository": "https://gitee.com/openharmony/distributedschedule_samgr_lite",
"domain": "os",
"language": "",
"publishAs": "code-segment",
"private": false,
"scripts": {},
"tags": [
"foundation"
],
"keywords": [
"distributedschedule",
"samgr",
"lite"
],
"envs": [],
"dirs": [],
"author": {
"name": "",
"email": "",
"url": ""
},
"contributors": [
{
"name": "",
"email": "",
"url": ""
}
],
"segment": {
"destPath": "foundation/distributedschedule/samgr_lite"
},
"component": {
"name": "samgr_lite",
"subsystem": "distributedschedule",
"syscap": [],
"features": [],
"adapted_system_type": [
"small"
],
"rom": "",
"ram": "",
"deps": {
"components": [],
"third_party": []
},
"build": {
"sub_component": [],
"inner_kits": [],
"test": []
}
}
}

View File

@ -1,58 +0,0 @@
/*
* Copyright (c) 2020 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 OHOS_DISTRIBUTEDSCHEDULE_INTERFACE_H
#define OHOS_DISTRIBUTEDSCHEDULE_INTERFACE_H
#include "feature.h"
#include "iproxy_server.h"
#ifdef __cplusplus
#if __cplusplus
extern "C" {
#endif
#endif
#define DISTRIBUTED_SCHEDULE_SERVICE "dtbschedsrv"
#define DMSLITE_FEATURE "dmslite"
typedef enum {
DMS_EC_SUCCESS = 0,
DMS_EC_START_ABILITY_SYNC_SUCCESS = 1,
DMS_EC_START_ABILITY_ASYNC_SUCCESS = 2,
DMS_EC_PARSE_TLV_FAILURE = 3,
DMS_EC_UNKNOWN_COMMAND_ID = 4,
DMS_EC_GET_BMS_FAILURE = 5,
DMS_EC_GET_BUNDLEINFO_FAILURE = 6,
DMS_EC_CHECK_PERMISSION_FAILURE = 7,
DMS_EC_GET_AMS_FAILURE = 8,
DMS_EC_REGISTE_IPC_CALLBACK_FAILURE = 9,
DMS_EC_FILL_WANT_FAILURE = 10,
DMS_EC_START_ABILITY_SYNC_FAILURE = 11,
DMS_EC_START_ABILITY_ASYNC_FAILURE = 12,
DMS_EC_FAILURE = 13
} DmsLiteCommonErrorCode;
typedef struct {
INHERIT_SERVER_IPROXY;
} DmsLiteInterface;
#ifdef __cplusplus
#if __cplusplus
}
#endif
#endif
#endif // OHOS_DISTRIBUTEDSCHEDULE_INTERFACE_H