KLMp4Movie.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
- //---------------------------------------------------------------------------
- // Sword3 Engine (c) 1999-2000 by Kingsoft
- //
- // File: KMp4Movie.h
- // Date: 2000.08.08
- // Code: Daniel Wang
- // Desc: Header File
- //---------------------------------------------------------------------------
- #ifndef KMp4Movie_H
- #define KMp4Movie_H
- //---------------------------------------------------------------------------
- #include "KMp4Audio.h"
- #include "KMp4Video.h"
- //---------------------------------------------------------------------------
- class DLL_API KMp4Movie
- {
- private:
- KMp4Audio m_Audio;
- KMp4Video m_Video;
- public:
- BOOL Open(LPSTR FileName);
- void Close();
- void Play(BOOL bZoom);
- void Stop();
- void Seek(int nPercent);
- void Rewind();
- void SetPos(int nX, int nY);
- void WaitForEnd();
- };
- //---------------------------------------------------------------------------
- #endif