/* * Copyright (c) 2023 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. */ #include "parameter.h" const char *OH_GetDeviceType(void) { return GetDeviceType(); } const char *OH_GetManufacture(void) { return GetManufacture(); } const char *OH_GetBrand(void) { return GetBrand(); } const char *OH_GetMarketName(void) { return GetMarketName(); } const char *OH_GetProductSeries(void) { return GetProductSeries(); } const char *OH_GetProductModel(void) { return GetProductModel(); } const char *OH_GetSoftwareModel(void) { return GetSoftwareModel(); } const char *OH_GetHardwareModel(void) { return GetHardwareModel(); } const char *OH_GetBootloaderVersion(void) { return GetBootloaderVersion(); } const char *OH_GetAbiList(void) { return GetAbiList(); } const char *OH_GetSecurityPatchTag(void) { return GetSecurityPatchTag(); } const char *OH_GetDisplayVersion(void) { return GetDisplayVersion(); } const char *OH_GetIncrementalVersion(void) { return GetIncrementalVersion(); } const char *OH_GetOsReleaseType(void) { return GetOsReleaseType(); } const char *OH_GetOSFullName(void) { return GetOSFullName(); } int OH_GetSdkApiVersion(void) { return GetSdkApiVersion(); } int OH_GetFirstApiVersion(void) { return GetFirstApiVersion(); } const char *OH_GetVersionId(void) { return GetVersionId(); } const char *OH_GetBuildType(void) { return GetBuildType(); } const char *OH_GetBuildUser(void) { return GetBuildUser(); } const char *OH_GetBuildHost(void) { return GetBuildHost(); } const char *OH_GetBuildTime(void) { return GetBuildTime(); } const char *OH_GetBuildRootHash(void) { return GetBuildRootHash(); } const char *OH_GetDistributionOSName(void) { return GetDistributionOSName(); } const char *OH_GetDistributionOSVersion(void) { return GetDistributionOSVersion(); } int OH_GetDistributionOSApiVersion(void) { return GetDistributionOSApiVersion(); } const char *OH_GetDistributionOSReleaseType(void) { return GetDistributionOSReleaseType(); }