summaryrefslogtreecommitdiff
path: root/plug.h
diff options
context:
space:
mode:
authoryuzu-eva <cafebabe@disroot.org>2025-06-08 19:10:30 +0200
committeryuzu-eva <cafebabe@disroot.org>2025-06-08 19:10:30 +0200
commit3438bb45053b30c69eb96fc2476f7d7ba4189906 (patch)
treea9861498c0775805416418efc8e1b66cc7b7673a /plug.h
parenta029d434b3f67c37bb4663be8e9b4d6623a32955 (diff)
rearranged project structure and adjusted Makefiles
Diffstat (limited to 'plug.h')
-rw-r--r--plug.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/plug.h b/plug.h
deleted file mode 100644
index 2a9dcea..0000000
--- a/plug.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef PLUG_H_
-#define PLUG_H_
-
-void PauseMusic(void);
-void RaiseVolume(void);
-void LowerVolume(void);
-void PrepareMusicStream(void);
-void StartMusicStream(void);
-
-#define LIST_OF_PLUGS \
- PLUG(plug_init, void, void) \
- PLUG(plug_pre_reload, void*, void) \
- PLUG(plug_post_reload, void, void*) \
- PLUG(plug_update, void, void)
-
-#define PLUG(name, ret, ...) typedef ret (name##_t)(__VA_ARGS__);
-LIST_OF_PLUGS
-#undef PLUG
-
-#endif // PLUG_H_