diff options
Diffstat (limited to 'src/emu/ui/info_pty.h')
-rw-r--r-- | src/emu/ui/info_pty.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/emu/ui/info_pty.h b/src/emu/ui/info_pty.h new file mode 100644 index 00000000000..4352c1d48c8 --- /dev/null +++ b/src/emu/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(); + virtual void handle(); +}; + +#endif // __UI_INFO_PTY_H__ |