1 /* 2 * Copyright (c) 2020 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 16 #ifndef OHOS_ABILITY_MESSAGE_ID_H 17 #define OHOS_ABILITY_MESSAGE_ID_H 18 19 #ifdef __cplusplus 20 #if __cplusplus 21 extern "C" { 22 #endif 23 #endif 24 25 enum AmsMsgType { 26 #ifndef OHOS_APPEXECFWK_BMS_BUNDLEMANAGER 27 AMS_SERVICE_INITED = 0x1000, 28 AMS_START_ABILITY, 29 AMS_TERMINATE_ABILITY, 30 AMS_ONSTART, 31 AMS_ONACTIVE, 32 AMS_ONBACKGROUND, 33 AMS_ONDESTROY, 34 AMS_SENDMESSAGE, 35 AMS_REGISTER, 36 AMS_UNREGISTER, 37 38 AMS_START_CHECK_REQUEST, 39 AMS_START_CHECK_RESPONSE, 40 41 /* msgId used to communicated with Launcher */ 42 LAUNCHER_SCHEDULE_ACTIVE, 43 LAUNCHER_SCHEDULE_BACKGROUND, 44 // The above value is for watch gt, don't change the order 45 #else 46 AMS_SERVICE_INITED = 0, 47 AMS_START_ABILITY, 48 AMS_TERMINATE_ABILITY, 49 50 AMS_ATTACH_BUNDLE, 51 AMS_TRANSACTION_DONE, 52 53 AMS_CONNECT_ABILITY, 54 AMS_CONNECT_ABILITY_DONE, 55 AMS_DISCONNECT_ABILITY, 56 AMS_DISCONNECT_ABILITY_DONE, 57 AMS_TERMINATE_SERVICE, 58 AMS_TERMINATE_APP, 59 AMS_RESTART_APP, 60 AMS_DUMP_ABILITY, 61 #endif 62 }; 63 64 #ifdef __cplusplus 65 #if __cplusplus 66 } 67 #endif 68 #endif 69 #endif // OHOS_ABILITY_MESSAGE_ID_H 70