IMineMusic.h
资源名称:brewmine3.rar [点击查看]
上传用户:yulinhuamu
上传日期:2009-12-26
资源大小:7287k
文件大小:1k
源码类别:
BREW编程
开发平台:
Visual C++
- #ifndef _IMINEMUSIC_H
- #define _IMINEMUSIC_H
- #include "AeeStdLib.h"
- #include "AeeSoundPlayer.h"
- #include "AeeShell.h"
- typedef enum
- {
- MMT_FLASH,
- MMT_START,
- MMT_SUCCESS,
- MMT_FAILURE
- }TMineMusicType;
- typedef struct _IMineMusic
- {
- IShell* m_pIShell;
- ISoundPlayer * m_pISoundPlayer;
- }IMineMusic;
- IMineMusic* IMINEMUSIC_CreateInstance(IShell* pIShell);
- boolean IMINEMUSIC_Release(IMineMusic* pCtl);
- boolean IMINEMUSIC_Start(IMineMusic* pCtl,TMineMusicType type);
- boolean IMINEMUSIC_Stop(IMineMusic* pCtl);
- #endif