1 /* 2 * Copyright (c) 2021 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_RUNTIME_APPLICATION_ENV_H 17 #define OHOS_ABILITY_RUNTIME_APPLICATION_ENV_H 18 19 #ifdef __cplusplus 20 #if __cplusplus 21 extern "C" { 22 #endif 23 #endif 24 25 /** 26 * @brief Obtains the bundle name of the application 27 * @param - 28 * @return Returns the pointer to the bundle name if the operation is successful; returns a null pointer otherwise. 29 */ 30 const char *GetBundleName(); 31 32 /** 33 * @brief Obtains the source code path of this application. 34 * @param - 35 * @return Returns the pointer to the source code path of this application. 36 */ 37 const char *GetSrcPath(); 38 39 /** 40 * @brief Obtains the data path of this application. 41 * @param - 42 * @return Returns the pointer to the data path of this application. 43 */ 44 const char *GetDataPath(); 45 46 #ifdef __cplusplus 47 #if __cplusplus 48 } 49 #endif 50 #endif 51 52 #endif // OHOS_ABILITY_RUNTIME_APPLICATION_ENV_H 53