al_wss.h 539 B

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. * Copyright(c) 2011 Sunmedia Technologies - All Rights Reserved.
  3. *
  4. * @file
  5. *
  6. * @brief this file describes wide screen signaling parsing the interface
  7. */
  8. #ifndef __AL_WSS_H__
  9. #define __AL_WSS_H__
  10. #include "al_basictypes.h"
  11. #ifdef __cplusplus
  12. extern "C"{
  13. #endif
  14. /**
  15. * @brief the function can get WSS information.
  16. *
  17. * @param *WssInfo get wss information.
  18. *
  19. * @return AL_SUCCESS if getting wss information is successful,
  20. * AL_FAILURE otherwise.
  21. */
  22. AL_Return_t AL_WSS_GetInfo(al_uint8 *WssInfo);
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26. #endif