diff --git a/interfaces/inner_api/utils/hdf_base.h b/interfaces/inner_api/utils/hdf_base.h index c6cf6a69994086030711a000ea7f94012e6235da..2e8405334e32e984eb31417525d24fcf133c3693 100644 --- a/interfaces/inner_api/utils/hdf_base.h +++ b/interfaces/inner_api/utils/hdf_base.h @@ -116,6 +116,11 @@ typedef enum { * @brief Declares the directory of the HCS configuration file of the HDF. */ #define HDF_CHIP_PROD_CONFIG_DIR "/etc" + +/** + * @brief Declares the name of the HDF module library. + */ +#define HDF_LIBRARY_NAME(x) x ".so" #else /** * @brief Declares the full path of the HDF module library. @@ -150,6 +155,11 @@ typedef enum { * @brief Declares the installation directory of the HDF kernel-mode service module driver. */ #define HDF_MODULE_DIR "/vendor/modules/" + +/** + * @brief Declares the name of the HDF module library. + */ +#define HDF_LIBRARY_NAME(x) x ".z.so" #endif #ifdef __cplusplus