添加状态栏和调整音量的快捷键

This commit is contained in:
2025-08-27 06:51:07 +08:00
parent 96629c3045
commit 78ae26a3e2
10 changed files with 549 additions and 9 deletions

View File

@@ -10,8 +10,13 @@
#define LENGTH(X) (sizeof(X) / sizeof(X)[0])
#ifndef MIN
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
#endif
double get_time();
void die(const char *format, ...);