📄 mp3.h
字号:
#ifndef QzhDefineMP3H
#define QzhDefineMP3H
#ifdef __cplusplus
extern "C" {
#endif
#define PREVSONG BIT(2)
#define NEXTSONG BIT(3)
#define VOLDOWN BIT(4)
#define VOLUP BIT(5)
#define STOP BIT(6)
// By 老圣(13809003593),2006.10.28
#define KeyMask (PREVSONG | NEXTSONG | VOLDOWN | VOLUP | STOP)
// 表示没有键按下
#define KeyNone 0x00
// 表示按下了前或后一首歌按键
#define KeyNextOrPrev 0x80
#ifdef __cplusplus
}
#endif
#endif // QzhDefineMP3H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -