1234567891011121314151617181920212223242526272829303132 |
- /**
- * Copyright(c) 2011 Sunmedia Technologies - All Rights Reserved.
- *
- * @file
- *
- * @brief this file describes wide screen signaling parsing the interface
- */
- #ifndef __AL_WSS_H__
- #define __AL_WSS_H__
- #include "al_basictypes.h"
- #ifdef __cplusplus
- extern "C"{
- #endif
- /**
- * @brief the function can get WSS information.
- *
- * @param *WssInfo get wss information.
- *
- * @return AL_SUCCESS if getting wss information is successful,
- * AL_FAILURE otherwise.
- */
- AL_Return_t AL_WSS_GetInfo(al_uint8 *WssInfo);
- #ifdef __cplusplus
- }
- #endif
- #endif
|