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

BREW编程

开发平台:

Visual C++

  1. #ifndef _IMINEMUSIC_H
  2. #define _IMINEMUSIC_H
  3. #include "AeeStdLib.h"
  4. #include "AeeSoundPlayer.h"
  5. #include "AeeShell.h"
  6. typedef enum
  7. {
  8. MMT_FLASH,
  9. MMT_START,
  10. MMT_SUCCESS,
  11. MMT_FAILURE
  12. }TMineMusicType;
  13. typedef struct _IMineMusic
  14. {
  15. IShell* m_pIShell;
  16. ISoundPlayer * m_pISoundPlayer;
  17. }IMineMusic;
  18. IMineMusic* IMINEMUSIC_CreateInstance(IShell* pIShell);
  19. boolean IMINEMUSIC_Release(IMineMusic* pCtl);
  20. boolean IMINEMUSIC_Start(IMineMusic* pCtl,TMineMusicType type);
  21. boolean IMINEMUSIC_Stop(IMineMusic* pCtl);
  22. #endif