mirror of
https://gitee.com/idea4good/GuiLite.git
synced 2025-12-26 22:25:50 +08:00
!19 Refactor wnd, add HelloWidgets
This commit is contained in:
19
core_include/audio.h
Normal file
19
core_include/audio.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user