KLMp4Movie.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. //---------------------------------------------------------------------------
  2. // Sword3 Engine (c) 1999-2000 by Kingsoft
  3. //
  4. // File: KMp4Movie.h
  5. // Date: 2000.08.08
  6. // Code: Daniel Wang
  7. // Desc: Header File
  8. //---------------------------------------------------------------------------
  9. #ifndef KMp4Movie_H
  10. #define KMp4Movie_H
  11. //---------------------------------------------------------------------------
  12. #include "KMp4Audio.h"
  13. #include "KMp4Video.h"
  14. //---------------------------------------------------------------------------
  15. class DLL_API KMp4Movie
  16. {
  17. private:
  18. KMp4Audio m_Audio;
  19. KMp4Video m_Video;
  20. public:
  21. BOOL Open(LPSTR FileName);
  22. void Close();
  23. void Play(BOOL bZoom);
  24. void Stop();
  25. void Seek(int nPercent);
  26. void Rewind();
  27. void SetPos(int nX, int nY);
  28. void WaitForEnd();
  29. };
  30. //---------------------------------------------------------------------------
  31. #endif