summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend/mame/ui/info_pty.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/mame/ui/info_pty.h')
-rw-r--r--src/frontend/mame/ui/info_pty.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/frontend/mame/ui/info_pty.h b/src/frontend/mame/ui/info_pty.h
new file mode 100644
index 00000000000..584652211a6
--- /dev/null
+++ b/src/frontend/mame/ui/info_pty.h
@@ -0,0 +1,24 @@
+// license:BSD-3-Clause
+// copyright-holders:F.Ulivi
+/***************************************************************************
+
+ ui/info_pty.h
+
+ Information screen on pseudo terminals
+
+***************************************************************************/
+
+#pragma once
+
+#ifndef __UI_INFO_PTY_H__
+#define __UI_INFO_PTY_H__
+
+class ui_menu_pty_info : public ui_menu {
+public:
+ ui_menu_pty_info(running_machine &machine, render_container *container);
+ virtual ~ui_menu_pty_info();
+ virtual void populate() override;
+ virtual void handle() override;
+};
+
+#endif // __UI_INFO_PTY_H__