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#include "parameter.h" 16 17const char *OH_GetDeviceType(void) 18{ 19 return GetDeviceType(); 20} 21 22const char *OH_GetManufacture(void) 23{ 24 return GetManufacture(); 25} 26 27const char *OH_GetBrand(void) 28{ 29 return GetBrand(); 30} 31 32const char *OH_GetMarketName(void) 33{ 34 return GetMarketName(); 35} 36 37const char *OH_GetProductSeries(void) 38{ 39 return GetProductSeries(); 40} 41 42const char *OH_GetProductModel(void) 43{ 44 return GetProductModel(); 45} 46 47const char *OH_GetSoftwareModel(void) 48{ 49 return GetSoftwareModel(); 50} 51 52const char *OH_GetHardwareModel(void) 53{ 54 return GetHardwareModel(); 55} 56 57const char *OH_GetBootloaderVersion(void) 58{ 59 return GetBootloaderVersion(); 60} 61 62const char *OH_GetAbiList(void) 63{ 64 return GetAbiList(); 65} 66 67const char *OH_GetSecurityPatchTag(void) 68{ 69 return GetSecurityPatchTag(); 70} 71 72const char *OH_GetDisplayVersion(void) 73{ 74 return GetDisplayVersion(); 75} 76 77const char *OH_GetIncrementalVersion(void) 78{ 79 return GetIncrementalVersion(); 80} 81 82const char *OH_GetOsReleaseType(void) 83{ 84 return GetOsReleaseType(); 85} 86 87const char *OH_GetOSFullName(void) 88{ 89 return GetOSFullName(); 90} 91 92int OH_GetSdkApiVersion(void) 93{ 94 return GetSdkApiVersion(); 95} 96 97int OH_GetFirstApiVersion(void) 98{ 99 return GetFirstApiVersion(); 100} 101 102const char *OH_GetVersionId(void) 103{ 104 return GetVersionId(); 105} 106 107const char *OH_GetBuildType(void) 108{ 109 return GetBuildType(); 110} 111 112const char *OH_GetBuildUser(void) 113{ 114 return GetBuildUser(); 115} 116 117const char *OH_GetBuildHost(void) 118{ 119 return GetBuildHost(); 120} 121 122const char *OH_GetBuildTime(void) 123{ 124 return GetBuildTime(); 125} 126 127const char *OH_GetBuildRootHash(void) 128{ 129 return GetBuildRootHash(); 130} 131 132const char *OH_GetDistributionOSName(void) 133{ 134 return GetDistributionOSName(); 135} 136 137const char *OH_GetDistributionOSVersion(void) 138{ 139 return GetDistributionOSVersion(); 140} 141 142int OH_GetDistributionOSApiVersion(void) 143{ 144 return GetDistributionOSApiVersion(); 145} 146 147const char *OH_GetDistributionOSReleaseType(void) 148{ 149 return GetDistributionOSReleaseType(); 150} 151