summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/beep.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/beep.h')
-rw-r--r--src/emu/sound/beep.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/emu/sound/beep.h b/src/emu/sound/beep.h
new file mode 100644
index 00000000000..5b6453483ad
--- /dev/null
+++ b/src/emu/sound/beep.h
@@ -0,0 +1,16 @@
+#ifndef BEEP_H
+#define BEEP_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void beep_set_state(int,int);
+void beep_set_frequency(int,int);
+void beep_set_volume(int,int);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif