hv_vos_Base.h 887 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * @file hv_vos_Base.h
  3. * @brief Header file of base macro.
  4. *
  5. * @verbatim
  6. * ==============================================================================
  7. * ##### How to use #####
  8. * ==============================================================================
  9. * (+) Use ()
  10. *
  11. * @endverbatim
  12. * @author HiView SoC Software Team
  13. * @version 1.0.0
  14. * @date 2023-03-01
  15. */
  16. #ifndef _HV_VOS_BASE_H
  17. #define _HV_VOS_BASE_H
  18. #include <string.h>
  19. #include <stdlib.h>
  20. #include "hv_vos_BaseArch.h"
  21. #ifdef __cplusplus
  22. #define VOS_EXTERN_C extern "C"
  23. #define VOS_EXTERN_C_BEGIN extern "C"{
  24. #define VOS_EXTERN_C_END }
  25. #else
  26. #define VOS_EXTERN_C
  27. #define VOS_EXTERN_C_BEGIN
  28. #define VOS_EXTERN_C_END
  29. #endif
  30. VOS_EXTERN_C_BEGIN
  31. /// initialize VOS
  32. void Hv_Vos_Init(void);
  33. /// De-initialize VOS
  34. void Hv_Vos_Cleanup(void);
  35. VOS_EXTERN_C_END
  36. /**
  37. * @}
  38. */
  39. #endif