// license:BSD-3-Clause // copyright-holders:Aaron Giles /*************************************************************************** generic.h Generic system layouts. ***************************************************************************/ #ifndef MAME_EMU_LAYOUT_GENERIC_H #define MAME_EMU_LAYOUT_GENERIC_H #pragma once //************************************************************************** // GLOBAL VARIABLES //************************************************************************** // no screens layouts extern const internal_layout layout_noscreens; // for screenless systems // single screen layouts extern const internal_layout layout_monitors; // common monitor aspect ratios // dual screen layouts extern const internal_layout layout_dualhsxs; // dual 4:3 screens side-by-side extern const internal_layout layout_dualhovu; // dual 4:3 screens above and below extern const internal_layout layout_dualhuov; // dual 4:3 screens below and above // triple screen layouts extern const internal_layout layout_triphsxs; // triple 4:3 screens side-by-side // quad screen layouts extern const internal_layout layout_quadhsxs; // quad 4:3 screens side-by-side #endif // MAME_EMU_LAYOUT_GENERIC_H