/* * @file mmpa_api.h * * Copyright (C) Huawei Technologies Co., Ltd. 2024. All Rights Reserved. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */ #ifndef _MMPA_API_H_ #define _MMPA_API_H_ #define LINUX 0 #define LITEOS 1 #if(OS_TYPE == LINUX) //lint !e553 #include "mmpa_linux.h" #endif #if(OS_TYPE == LITEOS) //lint !e553 #include "mmpa_liteos.h" #endif #endif // MMPA_API_H_