mbox_ipcc.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /**
  2. ******************************************************************************
  3. * @file mbox_ipcc.h
  4. * @author MCD Application Team
  5. * @brief Header for mbox_ipcc.c module
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * <h2><center>&copy; Copyright (c) 2019 STMicroelectronics.
  10. * All rights reserved.</center></h2>
  11. *
  12. * This software component is licensed by ST under BSD 3-Clause license,
  13. * the "License"; You may not use this file except in compliance with the
  14. * License. You may obtain a copy of the License at:
  15. * opensource.org/licenses/BSD-3-Clause
  16. *
  17. ******************************************************************************
  18. */
  19. #ifndef MBOX_IPCC_H_
  20. #define MBOX_IPCC_H_
  21. /* USER CODE BEGIN firstSection */
  22. /* can be used to modify / undefine following code or add new definitions */
  23. /* USER CODE END firstSection */
  24. /* Includes ------------------------------------------------------------------*/
  25. /* Exported types ------------------------------------------------------------*/
  26. /* Exported constants --------------------------------------------------------*/
  27. /* Exported functions ------------------------------------------------------- */
  28. int MAILBOX_Notify(void *priv, uint32_t id);
  29. int MAILBOX_Init(void);
  30. int MAILBOX_Poll(struct virtio_device *vdev);
  31. /* USER CODE BEGIN lastSection */
  32. /* can be used to modify / undefine previous code or add new definitions */
  33. /* USER CODE END lastSection */
  34. #endif /* MBOX_IPCC_H_ */