IPlay.h
上传用户:yulinhuamu
上传日期:2009-12-26
资源大小:7287k
文件大小:1k
源码类别:

BREW编程

开发平台:

Visual C++

  1. #ifndef _IMINEPLAY_H
  2. #define _IMINEPLAY_H
  3. #include "Aeestdlib.h"
  4. #include "AEEshell.h"
  5. #include "AeeDisp.h"
  6. #include "Aeefile.h"
  7. #define CMD_RESTART 100
  8. typedef struct _TVedioElement
  9. {
  10. char* m_pData;
  11. struct _TVedioElement* m_pNext;
  12. }TVedioElement;
  13. typedef struct _IMinePlay
  14. {
  15. AEERect m_rt;
  16. int m_ShowPoint;
  17. int m_Imagedx;
  18. int m_Imagedy;
  19. IImage* m_pImage;
  20. IDisplay* m_pIDisplay;
  21. IShell* m_pIShell;
  22. TVedioElement* m_pNameList;
  23. int m_ListSize; 
  24. }IMinePlay;
  25. IMinePlay* IMINEPLAY_CreateInstance(AEERect *rt);
  26. boolean IMINEPLAY_Release(IMinePlay* pCtl);
  27. boolean IMINEPLAY_Start(IMinePlay* pCtl);
  28. boolean IMINEPLAY_Stop(IMinePlay* pCtl);
  29. #endif