mirror of
https://gitee.com/idea4good/GuiLite.git
synced 2025-01-15 17:02:52 +08:00
20 lines
219 B
C
20 lines
219 B
C
|
#ifndef __AUDIO_MANGE_H__
|
||
|
#define __AUDIO_MANGE_H__
|
||
|
|
||
|
enum AUDIO_TYPE
|
||
|
{
|
||
|
AUDIO_HEART_BEAT,
|
||
|
AUDIO_ALARM,
|
||
|
AUDIO_MAX
|
||
|
};
|
||
|
|
||
|
class c_audio
|
||
|
{
|
||
|
public:
|
||
|
static int play(AUDIO_TYPE type);
|
||
|
private:
|
||
|
static void init();
|
||
|
};
|
||
|
|
||
|
#endif
|