VideoPlayerAPI.h 311 B

1234567891011121314151617181920212223242526
  1. #ifndef _VIDEOPLAYERAPI_H_
  2. #define _VIDEOPLAYERAPI_H_
  3. #include "IVideoPlayer.h"
  4. extern "C" {
  5. /* 加载动态库 */
  6. bool loadVideoPlayerLibrary();
  7. /* 创建播放器 */
  8. IVideoPlayer* createPlayer();
  9. /* 销毁播放器 */
  10. void destroyPlayer(IVideoPlayer* player);
  11. };
  12. #endif /* _VIDEOPLAYERAPI_H_ */